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

0001 import QtQuick 2.0
0002 import QtQuick 2.4
0003 import QtQuick.Controls 1.3
0004 
0005 Rectangle {
0006     id:root
0007     property alias text : textArea.text
0008     property alias textColor: textArea.textColor
0009     property alias font: textArea.font
0010     property alias wrapMode : textArea.wrapMode
0011     property alias hAlign: textArea.horizontalAlignment
0012     property alias vAlign: textArea.verticalAlignment
0013     property bool clippedText: false
0014     property bool readOnly: false
0015     TextArea {
0016         id: textArea
0017         anchors.fill: parent
0018         selectByMouse: true
0019         readOnly: root.readOnly
0020         textFormat: TextEdit.RichText
0021     }
0022 }