You might want to check the state since you use the state to change the
anchors. You could add objectName or another property to your state to check
your condition.
property bool isAnchors: myObj.states.find(function(s){ return s.name ==
myObj.state; }).myPropertyBool;
State
{
property bo
But I wanted to query anchors at runtime once too, a few years ago; I think
I’ve forgotten why.
> On 6 Apr 2018, at 13:58, Mitch Curtis wrote:
>
> https://bugreports.qt.io/browse/QTBUG-66264 is semi-related to this, or at
> least explains why we can’t really return null if they’re not set.
>
https://bugreports.qt.io/browse/QTBUG-66264 is semi-related to this, or at
least explains why we can’t really return null if they’re not set.
Without having more information about your use case, it seems like quite a
corner case.
From: Alexander Ivash [mailto:elder...@gmail.com]
Sent: Friday, 6
Thanks, I'm aware of this, but this is a bit different.. Would be great to get
ability to compare against something like anchors.defaultLeft
(https://link.getmailspring.com/link/1523014719.local-23d3901e-507d-v1.2.1-7e744...@getmailspring.com/0?redirect=anchors.defaultLeft&recipient=aW50ZXJlc3RAc
I’m not sure if it helps in your situation, but perhaps you could take a look
at AnchorChanges:
http://doc.qt.io/qt-5/qml-qtquick-anchorchanges.html
When the item is in an “anchored” state:
states: [
State {
name: "anchored"
AnchorChanges {
t
Let's say I'm trying to make the logic like this: "If parent component is
anchored, make a child green, otherwise make it red"
Sent from Mailspring
(https://link.getmailspring.com/link/1523013678.local-18836154-ab75-v1.2.1-7e744...@getmailspring.com/0?redirect=https%3A%2F%2Fgetmailspring.com%2F&
What are you trying to do?
From: Interest [mailto:interest-bounces+mitch.curtis=qt...@qt-project.org] On
Behalf Of Alexander Ivash
Sent: Friday, 6 April 2018 11:40 AM
To: interest@qt-project.org
Subject: [Interest] How to determine whether QML item is anchored?
What I'm missing? It seems like ev
Hi
There is actually already a bug report for this issue at
https://bugreports.qt.io/browse/QTBUG-56558.
The reason I am posting this on the mailing list is because it was
created over a year ago and there has been no movement on it, it is
still in the reported status. I was thinking that ma
What I'm missing? It seems like even not anchored item has
anchors.right/left/top/bottom set, so it is not possible to compare with
'undefined' or something. Of course introducing change handler allows to track
moment of anchoring (although still no way to track un-anchoring), but this is
a bit