scale dependning on font size

This commit is contained in:
Patrick von Reth 2014-09-23 16:26:51 +02:00
parent 3f96f1effa
commit 3225fb65fa
1 changed files with 6 additions and 4 deletions

View File

@ -4,8 +4,8 @@ import QtQuick.Window 2.2
Rectangle { Rectangle {
id: root id: root
width: Screen.width * 0.2 width: body.font.pixelSize * 3 * 9
height: Screen.height * 0.1 height: body.font.pixelSize * 9
signal dismissed() signal dismissed()
@ -33,7 +33,9 @@ Rectangle {
animation.start() animation.start()
} }
console.debug(width + "x" + height)
console.debug(body.maximumLineCount)
} }
NumberAnimation{ NumberAnimation{
@ -82,7 +84,7 @@ Rectangle {
anchors.left: image.right anchors.left: image.right
anchors.leftMargin: 5 anchors.leftMargin: 5
wrapMode: Text.WordWrap wrapMode: Text.WordWrap
maximumLineCount: root.height / font.pointSize maximumLineCount: root.height / font.pixelSize - 3
onLinkActivated: Qt.openUrlExternally(link) onLinkActivated: Qt.openUrlExternally(link)
} }