Re: [Interest] PropertyAction doesn't work with anchors

2015-08-05 Thread Ruslan Moukhlynin
Yes, but that isn't mandatory. Anyway what can I do if I don't want animation but immediate change? 06.08.2015 14:43, Dmitry Volosnykh пишет: When using AnchorChanges in states, you should refer to AnchorAnimation in transitions. See http://doc.qt.io/qt-5/qml-qtquick-anchoranimation.html On

Re: [Interest] PropertyAction doesn't work with anchors

2015-08-05 Thread Ruslan Moukhlynin
Unfortunately that doesn't work too. I've tried: in states: ... AnchorChanges { target: rect anchors { top: undefined bottom: parent.bottom } } ... and so, in transitions: ... PropertyAction { target: rect properties: "anchors" } ... 05.08.

Re: [Interest] Android launch screens?

2015-08-05 Thread Alexey Godko
I'm expecting the same issues, but on all my test devices black screen tooks less than one second, so it is not issue for me. May be custom redraw on Android's activity will help, I'll try it when time. Simple setting getWindow().getDecorView().findViewById(android.R.id.content ).setBackgroundColor

Re: [Interest] Android launch screens?

2015-08-05 Thread Nuno Santos
Jason, In order to avoid multiple images to handle different screen resolutions I decided to implement my launch image using Qml only. For that reason I have omitted launch images for both iOS and Android. The only disadvantage is that it looks a bit black on the beginning compared with other

[Interest] Android launch screens?

2015-08-05 Thread Jason H
This question is 50% Qt and 50% Android. Now that I have a launch screen working in iOS, I'd like the same thing in Android. Now, iOS lists the launch screen separately from the rest of the application, so it can be loaded without having to load the whole app. I'm not sure this is the case in A

Re: [Interest] Qt 5.5.1 And Xcode

2015-08-05 Thread m...@rpzdesign.com
Ok: QTBUG-47627 But my original question remains unanswered with respect to the CI system and XCode Versions / IOS/OSX SDK versions. md On 8/5/2015 7:06 AM, Tor Arne Vestbø wrote: > Hi Mark, > > If you file bugs with the errors you are seeing and the exact > configuration you are running we c

Re: [Interest] Qt 5.5.1 And Xcode

2015-08-05 Thread Jason H
Mark, if you are referring to the barrage of warnings, those are supposed to be fixed in 5.5.1, according to a Thiago post the day 5.5.0 was released. In that post he suggested 5.5.1 will have the fix. > Sent: Wednesday, August 05, 2015 at 9:06 AM > From: "Tor Arne Vestbø" > To: interest@qt-pr

Re: [Interest] Qt 5.5.1 And Xcode

2015-08-05 Thread Tor Arne Vestbø
Hi Mark, If you file bugs with the errors you are seeing and the exact configuration you are running we can investigate the issue further. Thanks! Tor Arne On 05/08/15 14:58, m...@rpzdesign.com wrote: > Hello List: > > What version of Xcode and OSX/IOS SDK version is the Continous > Integratio

[Interest] Qt 5.5.1 And Xcode

2015-08-05 Thread m...@rpzdesign.com
Hello List: What version of Xcode and OSX/IOS SDK version is the Continous Integration system is being used to validate Qt 5.5.1? Looking at the link, it is not apparent. https://wiki.qt.io/CI_Configurations The reason I say this is that I tried Qt 5.5.0 and got slammed by more Xcode tooling e

Re: [Interest] PropertyAction doesn't work with anchors

2015-08-05 Thread Dmitry Volosnykh
What if you specify a single property: "anchors" and set it to object value: { "bottom": 100; "top": 100 } PS. Just a suggestion. Have not done something similar by myself. On Wed, Aug 5, 2015 at 2:33 AM, Ruslan Moukhlynin wrote: > Suppose we have following code: > > Rectangle { > > id: re