Re: [Interest] [qt-iOS] API for Apps to Forbid Custom Keyboards

2014-12-04 Thread Samuel Gaist
On 4 déc. 2014, at 08:30, Till Oliver Knoll till.oliver.kn...@gmail.com wrote: Am 04.12.2014 um 07:40 schrieb Robert Iakobashvili corobe...@gmail.com: ... To disable custom keyboard in your app completely override the application:shouldAllowExtensionPointIdentifier:

Re: [Interest] [qt-iOS] API for Apps to Forbid Custom Keyboards

2014-12-04 Thread Till Oliver Knoll
Am 04.12.2014 um 08:41 schrieb Robert Iakobashvili corobe...@gmail.com: On Thu, Dec 4, 2014 at 9:30 AM, Till Oliver Knoll till.oliver.kn...@gmail.com wrote: Am 04.12.2014 um 07:40 schrieb Robert Iakobashvili corobe...@gmail.com: ... To disable custom keyboard in your app completely

[Interest] What is the minimum required steps to extend a QQuickItem in C++ and make receive the touch events?

2014-12-04 Thread Nuno Santos
Hi, I want to implement a custom QQuickItem in C++ for enhanced performance rather than having a complex Qml component. I want to received the touch events but overriding touchEvent doesn’t seem to be enough. What am I missing? Thanks, Nuno ___

Re: [Interest] What is the minimum required steps to extend a QQuickItem in C++ and make receive the touch events?

2014-12-04 Thread Nuno Santos
Hi, The target platforms are iOS and Android. On the computer I just want to be able to test with the mouse. I didn’t realised it would need so many details. On 04 Dec 2014, at 10:05, Rutledge Shawn shawn.rutle...@theqtcompany.com wrote: On 4 Dec 2014, at 10:53, Nuno Santos

Re: [Interest] QML Camera api question

2014-12-04 Thread Lopes Yoann
On 03 Dec 2014, at 18:22, Harri Pasanen ha...@mpaja.com wrote: QCameraExposure::isExposureModeSupported() would seem to be the function to call in C++, but how to do that from QML? Same goes for supportedApertures, IsoSensitivities, etc. There are no QML equivalents at the moment. You’ll

[Interest] Regarding QtLocation OSM Maps

2014-12-04 Thread Jha Sonakumar
Hi all, Could anybody guide me regarding plugins parameters to specify for Map if MAP provider is OSM. I am able to use here maps but not sure how to use OSM maps Plugin { id: myPlugin name : nokia parameters: [ PluginParameter { name: app_id; value:

Re: [Interest] [qt-iOS] How to specify a Framework as optional?

2014-12-04 Thread Liang Jian
It works, thank you very much! On Thu, Dec 4, 2014 at 3:35 PM, Till Oliver Knoll till.oliver.kn...@gmail.com wrote: ... LIBS += -framework Photos It works, but since Photos Framework was introduced in iOS 8.0, my app won't run in iOS 7.0

Re: [Interest] Regarding QtLocation OSM Maps

2014-12-04 Thread Blasche Alexander
Hi, The OSM plugin does not need any specific plug-in parameters to get it working. To confirm that the provider works I suggest you use the examples/location/mapviewer example to show some OSM based tiles. You have to select OSM as Provider in the bottom right of the application. The

[Interest] QML Image asyncronous property

2014-12-04 Thread Harri Pasanen
I'm playing with a GridView where the delegate contains an Image element with asyncronous: true property. As a result, when my QML file loads, I see a bunch of messages like: QObject::startTimer: Timers cannot be started from another thread going by in Application Output pane. This is

[Interest] Loader not unloading

2014-12-04 Thread Nuno Santos
Hi, It seems that Loader element doesn’t unload the previous element when a new source is set. This happens in on Mac, iOS Android with 5.3.2. Haven’t tested in other platforms. Does anyone knows if this is a bug or something that should be done differently? Regards, Nuno

Re: [Interest] Loader not unloading

2014-12-04 Thread Nuno Santos
Ops.. I have done an isolated test and the item was unloaded… I need to figure out what is happening. On 04 Dec 2014, at 16:15, Nuno Santos nunosan...@imaginando.pt wrote: Hi, It seems that Loader element doesn’t unload the previous element when a new source is set. This happens in

[Interest] ListView questions

2014-12-04 Thread Jason H
So I am finding that ListView is poorly documented. It inherits Flickable, but does not otherwise have any currentIndexChanged() events, except that, it has it... somehow. I am trying to use a ListView with a delegate that has the following behavior: Unselected item delegate: - A line of text -

Re: [Interest] ListView questions

2014-12-04 Thread Nurmi J-P
On 04 Dec 2014, at 20:07, Jason H jh...@gmx.com wrote: So I am finding that ListView is poorly documented. It inherits Flickable, but does not otherwise have any currentIndexChanged() events, except that, it has it... somehow. I am trying to use a ListView with a delegate that has the

Re: [Interest] ListView questions

2014-12-04 Thread Nurmi J-P
On 04 Dec 2014, at 20:42, Jason H jh...@gmx.com wrote: Sent: Thursday, December 04, 2014 at 2:21 PM From: Nurmi J-P jpnu...@theqtcompany.com To: interest interest@qt-project.org Cc: Jason H jh...@gmx.com Subject: Re: [Interest] ListView questions On 04 Dec 2014, at 20:07, Jason H

[Interest] QML Qt.lighter() for images?

2014-12-04 Thread Jason H
I'm running into a common issue, where I have art - PNG and SVG that I wish to use the color functions on. I can either generate this art statically, which isn't great or I can convert it to a Canvas, which I can change the color dynamically. It works, kinda. I have to manually request the

Re: [Interest] QML Qt.lighter() for images?

2014-12-04 Thread Jérôme Godbout
You can take a look at GraphicalEffect module. It’s probably what you are looking for: http://qt-project.org/doc/qt-5/graphicaleffects.html On Dec 4, 2014, at 11:06 PM, Jason H jh...@gmx.com wrote: I'm running into a common issue, where I have art - PNG and SVG that I wish to use the