iew.SelectRows || control.treeView.selectionBehavior === TableView.SelectionDisabled) && control.row === control.treeView.currentRow) required property int row required property var model readonly property real __contentIndent: !isTreeNode ? 0 : (depth * indentation) + (indicator ? indicator.width + spacing : 0) indicator: Item { // Create an area that is big enough for the user to // click on, since the image is a bit small. readonly property real __indicatorIndent: control.leftMargin + (control.depth * control.indentation) x: !control.mirrored ? __indicatorIndent : control.width - __indicatorIndent - width y: (control.height - height) / 2 width: 16 height: 16 NativeStyle.TreeIndicator { x: (parent.width - width) / 2 y: (parent.height - height) / 2 control: control useNinePatchImage: false } } background: Rectangle { color: control.highlighted ? control.palette.highlight : (control.treeView.alternatingRows && control.row % 2 !== 0 ? control.palette.alternateBase : control.palette.base) } contentItem: Label { clip: false text: control.model.display elide: Text.ElideRight color: control.highlighted ? control.palette.highlightedText : control.palette.buttonText } }