1
0
Fork 0
mirror of https://github.com/subsurface/subsurface.git synced 2025-02-19 22:16:15 +00:00
subsurface/qt-mobile/ThemeTest.qml

59 lines
698 B
QML
Raw Normal View History

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
}
Item {
Layout.columnSpan: 2
Layout.fillHeight: true
}
}