Warning, /rolisteam/rolisteam/src/libraries/charactersheet/qml/Rolisteam/RLabel.qml is written in an unsupported language. File is not indexed.

0001 import QtQuick
0002 import QtQuick.Controls
0003 
0004 Label {
0005     id:root
0006     property alias backgroundColor: rect.color
0007     property alias hAlign: root.horizontalAlignment
0008     property alias vAlign: root.verticalAlignment
0009     property bool clippedText: false
0010     property bool readOnly: false
0011     property string tooltip: ""
0012     ToolTip.text: root.tooltip
0013     ToolTip.visible: root.tooltip.length >0 && activeFocus
0014     background: Rectangle {
0015         id:rect
0016     }
0017     wrapMode: Text.Wrap
0018 }
0019