Hi,
It's probably easiest to look at a simplified example:
Rectangle {
id: rect
function myWidth() {
return rect.width
}
height: myWidth()
}
When the engine analyses the binding for height (i.e. myWidth()), it keeps
track of the fact that rect.width was used in the bind
Hi all! I've got some problem...
I have to make a elide for multiline text. Here is the code I wrote:
Text {
id: tempText
visible: false
width: parent.width
wrapMode: Text.WordWrap
function elideMultiline(etext, pointSize, linesCount) {
con