[Interest] PropertyAction doesn't work with anchors

2015-08-04 Thread Ruslan Moukhlynin
Suppose we have following code: Rectangle { id: rect width: 100 height: 100 MouseArea { anchors.fill: parent onClicked: { rect.state = "state1" } } states: [ State { name: "state1"

Re: [Interest] Seeking tips on restoring application geometry

2015-08-04 Thread Murphy, Sean
> > I'm kind of leaning towards saving multiple geometries in my settings based > on the current desktop size, so that the user can set one geometry for the > laptop-only case, set a different geometry for the external monitor(s) case, > and have the application remember those settings independentl

Re: [Interest] I want to edit http://doc.qt.io/qt-5/platform-notes-ios.html

2015-08-04 Thread Thiago Macieira
On Tuesday 04 August 2015 19:02:07 Jason H wrote: > It is wrong and needs to be updated with the information contained in > > https://bugreports.qt.io/browse/QTBUG-47592 qtdoc/doc/src/platforms/ios.qdoc -- Thiago Macieira - thiago.macieira (AT) intel.com Software Architect - Intel Open Source

Re: [Interest] I want to edit http://doc.qt.io/qt-5/platform-notes-ios.html

2015-08-04 Thread Robert Iakobashvili
On Tue, Aug 4, 2015 at 8:02 PM, Jason H wrote: > It is wrong and needs to be updated with the information contained in > > https://bugreports.qt.io/browse/QTBUG-47592 > Hi Jason, Voted for it. Used assets: added images to assets in Xcode and copied it back to my Qt-project to be set on creating

Re: [Interest] Seeking tips on restoring application geometry

2015-08-04 Thread Jason H
When I last did this (about a decade ago) I used QSettings, and had to check if the coordinates were valid in case the monitor configuration changed. If none were out of bounds (negative or > max) then the configuration was considered valid. If invalid, it positioned itself on the default monito

Re: [Interest] Seeking tips on restoring application geometry

2015-08-04 Thread Matthew Woehlke
On 2015-08-04 03:30, alexander golks wrote: >> I'm kind of leaning towards saving multiple geometries in my settings based >> on the current desktop size, so that the user can set one geometry for the >> laptop-only case, set a different geometry for the external monitor(s) case, >> and have the

[Interest] I want to edit http://doc.qt.io/qt-5/platform-notes-ios.html

2015-08-04 Thread Jason H
It is wrong and needs to be updated with the information contained in https://bugreports.qt.io/browse/QTBUG-47592 ___ Interest mailing list Interest@qt-project.org http://lists.qt-project.org/mailman/listinfo/interest

Re: [Interest] Seeking tips on restoring application geometry

2015-08-04 Thread alexander golks
hi, > I'm kind of leaning towards saving multiple geometries in my settings based > on the current desktop size, so that the user can set one geometry for the > laptop-only case, set a different geometry for the external monitor(s) case, > and have the application remember those settings indepe