PresentationApp/cell.qml

39 lines
913 B
QML
Raw Normal View History

import QtQuick 2.0
Rectangle {
2016-01-14 22:25:53 -08:00
enabled: true
objectName: "cellRect"
property int index: 0
width: 100
height: 100
/*anchors.right: parent
anchors.left: parent*/
Text {
id: cellText
2016-01-14 22:25:53 -08:00
enabled: true
objectName: "celltext"
height: 75
text: "hello this is text\nhaha\nhdsjfklfhaskjd"
textFormat: Text.AutoText
clip: true
font.bold: false
anchors.fill: parent
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
horizontalAlignment: Text.AlignLeft
verticalAlignment: Text.AlignTop
anchors.right: parent.right
anchors.rightMargin: 0
anchors.left: parent.left
anchors.leftMargin: 0
font.pixelSize: 12
2016-01-14 22:25:53 -08:00
MouseArea {
id: cellMouse
2016-01-14 22:25:53 -08:00
enabled: true
objectName: "cellMouse"
anchors.fill: parent
}
}
}