Re: [Interest] Maintenance Tool network error (OSX)

2018-05-29 Thread Jani Heikkinen
Hi all, Thanks for notifying this. There seems to be some issue and some release content is missing from download.qt.io. We will study & fix the issue as soon as possible br, Jani From: Interest on behalf of Henry Skoglund Sent: Tuesday, May 29, 2018

Re: [Interest] Maintenance Tool network error (OSX)

2018-05-29 Thread Andy
I just tried it w/10.12.6 and I get the same error. --- Andy Maloney // https://asmaloney.com twitter ~ @asmaloney On Tue, May 29, 2018 at 11:18 AM Jason H wrote: > Not sure if anyone else is getting this... > > ___

Re: [Interest] QtQuick for mobile - any experience to share?

2018-05-29 Thread Sylvain Pointeau
On Tue, May 29, 2018 at 5:00 PM, Jason H wrote: > A few things not mentioned, (or scanning to catch up on the thread, I did > not see) > 1. RN will expose native libraries. This is terrible for a X-platform > developer as if you use Multimedia, have to know each multipedia API > expertly. The bes

[Interest] Maintenance Tool network error (OSX)

2018-05-29 Thread Jason H
Not sure if anyone else is getting this... ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] QtQuick for mobile - any experience to share?

2018-05-29 Thread Jason H
A few things not mentioned, (or scanning to catch up on the thread, I did not see) 1. RN will expose native libraries. This is terrible for a X-platform developer as if you use Multimedia, have to know each multipedia API expertly. The best thing is to use Qt and have it abstract the native librar

Re: [Interest] QtQuick - list of heterogeneous objects

2018-05-29 Thread Jérôme Godbout
you can use to parse the obj: Reapeater { id: r_ model: myObjListStr property var componentsObj: { ''image": "MyImageComponent.qml", "text": "MyTextComponent.qml" ...} Loader { property var myObj: JSON.parse(modelData) source: r_.componentsObj[myObj.type] } } Th

[Interest] QtQuick - list of heterogeneous objects

2018-05-29 Thread Sylvain Pointeau
Dear all, how would you do in Qml to display a list of heterogeneous objects from a array in json provided dynamically? [ {type: "image", src: "xxx", text: "aaa"}, {type: "text", text: "aaa"}, {type: "circle", text: "aaa"} ] and I have 3 Qml object definition (or class? or do we call them?) that