Is it is possible QQuickItem layout change?
Is there a way to trigger function when layout/size ( x, y, width or hight) is changed?
There is way to connect on every propery signal change but this is not right way.
Already tried windowChanged signal but it doesn't work for this.
What I am trying to do is to call extrenal java function providing x(GLOBAL),y(GLOBAL),width,height every time my QQuickItem layout/size (any of these) change.
edit: I need to know the geometry after rendering is done. So I cannot connect to every property by itself.