subsurface/qt-mobile/ThemeTest.qml
Sebastian Kügler b7e33eb8bb More info in ThemeTest
This makes problems with the default font more apparent

Signed-off-by: Sebastian Kügler <sebas@kde.org>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-11-06 14:07:32 -08:00

73 lines
853 B
QML

import QtQuick 2.5
import QtQuick.Layouts 1.1
GridLayout {
id: themetest
columns: 2
Label {
Layout.columnSpan: 2
Layout.fillHeight: true
text: "Theme Information"
}
FontMetrics {
id: fm
}
Label {
text: "units.gridUnit:"
}
Label {
text: units.gridUnit
}
Label {
text: "units.devicePixelRatio:"
}
Label {
text: units.devicePixelRatio
}
Label {
text: "FontMetrics pointSize:"
}
Label {
text: fm.font.pointSize
}
Label {
text: "FontMetrics pixelSize:"
}
Label {
text: fm.height
}
Label {
text: "hand-computed devicePixelRatio:"
}
Label {
text: fm.height / fm.font.pointSize
}
Text {
text: "Text item pixelSize:"
}
Text {
text: font.pixelSize
}
Text {
text: "Text item pointSize:"
}
Text {
text: font.pointSize
}
Label {
Layout.columnSpan: 2
Layout.fillHeight: true
}
}