Warning, /rolisteam/rolisteam/src/libraries/charactersheet/qml/Rolisteam/ImageFieldv1.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 : image.source
0008     property color textColor : "black"
0009     property alias hAlign: image.horizontalAlignment
0010     property alias vAlign: image.verticalAlignment
0011     property bool clippedText: false
0012     property bool readOnly: true //by default, the edit mode will not be made in 1.8.
0013     color: "black"
0014 
0015     Image {
0016         id: image
0017         anchors.fill: parent
0018         fillMode: Image.PreserveAspectFit
0019     }
0020 }
0021