plitView { id: control implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset, implicitContentWidth + leftPadding + rightPadding) implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset, implicitContentHeight + topPadding + bottomPadding) handle: NinePatchImage { source: Imagine.url + "splitview-handle" NinePatchImageSelector on source { states: [ {"vertical": control.orientation === Qt.Vertical}, {"horizontal":control.orientation === Qt.Horizontal}, {"disabled": !control.enabled}, {"pressed": T.SplitHandle.pressed}, {"mirrored": control.mirrored}, {"hovered": T.SplitHandle.hovered} ] } } }