aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Sebastian Kügler <sebas@kde.org>2015-11-06 21:53:26 +0000
committerGravatar Dirk Hohndel <dirk@hohndel.org>2015-11-06 14:05:45 -0800
commit6d3a5e6bd4e0c449eca65fa832752452cc2b92f5 (patch)
tree3297dda3515cfba3b65ab52999e61434720b9117
parent9dc8f13a0ab2f2c0f2804b2dcaf602c2964fdddb (diff)
downloadsubsurface-6d3a5e6bd4e0c449eca65fa832752452cc2b92f5.tar.gz
Theme tweaks
- gridUnits is dynamic again, using FontMetrics now - Add a page to display some sizing-relevant details, so we can debug dpi problems a bit better on Android Signed-off-by: Sebastian Kügler <sebas@kde.org> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
-rw-r--r--qt-mobile/ThemeTest.qml15
-rw-r--r--qt-mobile/main.qml12
-rw-r--r--qt-mobile/mobile-resources.qrc5
-rw-r--r--qt-mobile/theme/Units.qml10
4 files changed, 35 insertions, 7 deletions
diff --git a/qt-mobile/ThemeTest.qml b/qt-mobile/ThemeTest.qml
new file mode 100644
index 000000000..55c15ed77
--- /dev/null
+++ b/qt-mobile/ThemeTest.qml
@@ -0,0 +1,15 @@
+import QtQuick 2.5
+import QtQuick.Layouts 1.1
+
+ColumnLayout {
+ id: themetest
+
+ Text {
+ text: "units.gridUnit is: " + units.gridUnit
+ }
+
+ Text {
+ text: "units.devicePixelRatio: " + units.devicePixelRatio
+
+ }
+}
diff --git a/qt-mobile/main.qml b/qt-mobile/main.qml
index f45ab9b60..f75476537 100644
--- a/qt-mobile/main.qml
+++ b/qt-mobile/main.qml
@@ -72,6 +72,13 @@ ApplicationWindow {
stackView.push(logWindow)
}
}
+
+ MenuItem {
+ text: "Theme Information"
+ onTriggered: {
+ stackView.push(themetest)
+ }
+ }
}
StackView {
@@ -201,6 +208,11 @@ ApplicationWindow {
visible: false
}
+ ThemeTest {
+ id: themetest
+ visible: false
+ }
+
Component.onCompleted: {
print("units.gridUnit is: " + units.gridUnit);
}
diff --git a/qt-mobile/mobile-resources.qrc b/qt-mobile/mobile-resources.qrc
index a5875bf68..c09dca571 100644
--- a/qt-mobile/mobile-resources.qrc
+++ b/qt-mobile/mobile-resources.qrc
@@ -7,8 +7,9 @@
<file>DiveDetails.qml</file>
<file>DownloadFromDiveComputer.qml</file>
<file>Log.qml</file>
- <file>TopBar.qml</file>
- <file alias="subsurface-mobile-icon.png">../icons/subsurface-mobile-icon.png</file>
+ <file>TopBar.qml</file>
+ <file>ThemeTest.qml</file>
+ <file alias="subsurface-mobile-icon.png">../icons/subsurface-mobile-icon.png</file>
</qresource>
<qresource prefix="/qml/theme">
<file alias="Theme.qml">theme/Theme.qml</file>
diff --git a/qt-mobile/theme/Units.qml b/qt-mobile/theme/Units.qml
index 9efec3157..1d0899fbc 100644
--- a/qt-mobile/theme/Units.qml
+++ b/qt-mobile/theme/Units.qml
@@ -31,7 +31,7 @@ QtObject {
* Given the screen has an accurate DPI settings, it corresponds to a width of
* the capital letter M
*/
- property int gridUnit: 20
+ property int gridUnit: fontMetrics.height
/**
* units.iconSizes provides access to platform-dependent icon sizing
@@ -95,8 +95,8 @@ QtObject {
*/
property int shortDuration: 150
-// property QtObject fontMetrics: FontMetrics {
-// //id: textSpacer
-// //text: "M"
-// }
+ property QtObject fontMetrics: FontMetrics {
+ //id: textSpacer
+ //text: "M"
+ }
}