[Interest] Command used by Qt Creator to deploy Apps to iOS devices

2018-03-05 Thread Jeffrey Brendecke
Which command is used by Qt Creator to deploy apps to iOS devices? The build logs show everything up through building and signing, but the output goes silent during the deploy phase. ___ Interest mailing list Interest@qt-project.org

Re: [Interest] RowLayout with Text with wrap mode

2018-03-05 Thread Jérôme Godbout
You need to specify a width to your Text element so the wrap around can occur. Else the Text consider it should set the width according to the text and therefor no wrap around is possible. If you want dynamic width range, you should consider Layout.minimumWidth and Layout.maximumWidth with

Re: [Interest] RowLayout with Text with wrap mode

2018-03-05 Thread Pierre-Yves Siret
You should always set a width for Text items (and a wrapMode and/or elide mode), unless you want your text to have no horizontal limit. In your case you need to correct your code (it's not a workaround since it's the intended behaviour) is to set a width for your Texts (the 3). Do this by using

Re: [Interest] RowLayout with Text with wrap mode

2018-03-05 Thread Jérôme Godbout
your BTW is the problems, parent size and anchors are not really working into a ListView delegate, which make some component reuse a bit hard with ListView sometime. When using a Layout into the delegate it's only the layout sizing that will have effect (normal size or other parent filll got

Re: [Interest] RowLayout with Text with wrap mode

2018-03-05 Thread Igor Mironchik
Hi, Thank you guys. Layout.fillWidth: true and width: parent.width together did the task. I have one more question: what if I have anchors.left: parent.left that is not necessary, will be in this case some performance issue with it? Or I can just forget about not necessary bindings? On

Re: [Interest] RowLayout with Text with wrap mode

2018-03-05 Thread Jérôme Godbout
All the *View* type are a bit of a pain with Layout item. You need to specify the height and width properly with the Layout.minimumWidth/Height and maximum values. If you don't need all the animation stuff from ListView, you can do a simple GridLayout and fill the element which would be way

[Interest] Qt for AR

2018-03-05 Thread Jason H
So QR-code based AR is kinda a joke (to me, see note) but real AR (provide visualization overlay) seems quite useful, unfortunately no phone really supports this correctly yet in a 3D VR way (It requires a dual camera config with separation = eye seperation) However the middle ground AR

Re: [Interest] Unit test framework

2018-03-05 Thread Himanshu Vishwakarma
I have to test the software, not by GUI I have to test the software have lots of file qml and js, How I can test the file of js and qml through the qt. problem is in the testing of the javascript file. How we connect them with the QtQuick QuickTest? Above software is not free charging too much.

[Interest] QT SCXML: How to access Event parameter from State?

2018-03-05 Thread Jonathan Fan
Hi, We are in the process of migration from QStateMachine to QT SCXML on QT 5.8. For example, we have the following stateMachine where the same event drives multiple transitions in the stateMachine, with C++ that implements the programmatic hooks like connectToState and connectToEvent. SCXML:

Re: [Interest] Unit test framework

2018-03-05 Thread Christian Gagneraud
On 5 March 2018 at 20:14, Himanshu Vishwakarma wrote: > I have to test the software, not by GUI I have to test the software have > lots of file qml and js, How I can test the file of js and qml through the > qt. > > problem is in the testing of the javascript file. > > How

Re: [Interest] RowLayout with Text with wrap mode

2018-03-05 Thread Pierre-Yves Siret
My BTW remarks aren't the problems. Those remarks apply for all Item, not only ListView delegates. width: parent.width has no effect if both anchors.left and anchors.right are set (this is the case with anchors.fill) anchors.left: parent.left with no margins/leftMargin is the same as x: 0, the

Re: [Interest] Qt for AR

2018-03-05 Thread Tuukka Turunen
Hi, I fully agree that marker based AR is not the proper way to do tracking. With a mobile phone, best is if you can leverage camera for "natural feature tracking" and aid the accuracy via sensor fusion. Depending upon the application / use case you may be able to use known objects as markers