PresentationApp/cell.qml

30 lines
721 B
QML
Raw Normal View History

import QtQuick 2.0
Rectangle {
property int index: 0/*
anchors.right: parent
anchors.left: parent*/
Text {
id: 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
MouseArea {
id: cellMouse
anchors.fill: parent
}
}
}