summaryrefslogtreecommitdiffstats
path: root/qt-mobile/ThemeTest.qml
diff options
context:
space:
mode:
Diffstat (limited to 'qt-mobile/ThemeTest.qml')
-rw-r--r--qt-mobile/ThemeTest.qml72
1 files changed, 0 insertions, 72 deletions
diff --git a/qt-mobile/ThemeTest.qml b/qt-mobile/ThemeTest.qml
deleted file mode 100644
index 7452acc1b..000000000
--- a/qt-mobile/ThemeTest.qml
+++ /dev/null
@@ -1,72 +0,0 @@
-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
- }
-}