blob: 085adba5fbc5c45c501716e3e89235f93fe3a8ba [file] [log] [blame]
import QtQuick 2.0
Rectangle {
property variant myInput: input
width: 800; height: 600; color: "blue"
TextEdit { id: input; focus: true
readOnly: true
text: "I am the very model of a modern major general.\n"
}
}