2015-11-06 21:53:26 +00:00
|
|
|
import QtQuick 2.5
|
2016-02-13 01:26:26 +00:00
|
|
|
import QtQuick.Controls 1.4
|
2015-11-06 21:53:26 +00:00
|
|
|
import QtQuick.Layouts 1.1
|
2016-03-09 03:38:03 +00:00
|
|
|
import QtQuick.Window 2.2
|
2016-03-08 20:26:54 +00:00
|
|
|
import org.kde.kirigami 1.0 as Kirigami
|
2015-11-06 21:53:26 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Page {
|
2016-02-12 20:17:43 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
title: "Theme Information"
|
2016-02-13 06:26:47 +00:00
|
|
|
/* this can be done by hitting the back key
|
2016-02-12 20:17:43 +00:00
|
|
|
contextualActions: [
|
|
|
|
Action {
|
|
|
|
text: "Close Theme info"
|
|
|
|
iconName: "dialog-cancel"
|
|
|
|
onTriggered: {
|
|
|
|
stackView.pop()
|
|
|
|
contextDrawer.close()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2016-02-13 06:26:47 +00:00
|
|
|
*/
|
2016-02-10 23:11:04 +00:00
|
|
|
GridLayout {
|
|
|
|
id: themetest
|
|
|
|
columns: 2
|
2016-03-08 20:26:54 +00:00
|
|
|
anchors.margins: Kirigami.Units.gridUnit / 2
|
2015-11-06 21:53:26 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Heading {
|
2016-02-10 23:11:04 +00:00
|
|
|
Layout.columnSpan: 2
|
|
|
|
text: "Theme Information"
|
|
|
|
}
|
2015-11-06 21:53:26 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Heading {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "Screen"
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
level: 3
|
|
|
|
}
|
|
|
|
FontMetrics {
|
|
|
|
id: fm
|
|
|
|
}
|
2015-11-06 21:54:54 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "Geometry (pixels):"
|
|
|
|
}
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: rootItem.width + "x" + rootItem.height
|
|
|
|
}
|
2015-12-03 22:27:27 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "Geometry (gridUnits):"
|
|
|
|
}
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
|
|
|
text: Math.round(rootItem.width / Kirigami.Units.gridUnit) + "x" + Math.round(rootItem.height / Kirigami.Units.gridUnit)
|
2016-02-10 23:11:04 +00:00
|
|
|
}
|
2015-12-08 01:07:31 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "Units.gridUnit:"
|
|
|
|
}
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
|
|
|
text: Kirigami.Units.gridUnit
|
2016-02-10 23:11:04 +00:00
|
|
|
}
|
2015-11-06 21:54:54 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "Units.devicePixelRatio:"
|
|
|
|
}
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-03-09 03:38:03 +00:00
|
|
|
text: Screen.devicePixelRatio
|
2016-02-10 23:11:04 +00:00
|
|
|
}
|
2015-11-06 21:54:54 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Heading {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "Font Metrics"
|
|
|
|
level: 3
|
|
|
|
Layout.columnSpan: 2
|
|
|
|
}
|
2015-12-08 01:07:31 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "FontMetrics pointSize:"
|
|
|
|
}
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: fm.font.pointSize
|
|
|
|
}
|
2015-11-06 21:54:54 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "FontMetrics pixelSize:"
|
|
|
|
}
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: fm.height
|
|
|
|
}
|
2015-11-06 21:54:54 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "FontMetrics devicePixelRatio:"
|
|
|
|
}
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: fm.height / fm.font.pointSize
|
|
|
|
}
|
2015-11-06 21:53:26 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "Text item pixelSize:"
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
text: font.pixelSize
|
|
|
|
}
|
2015-11-06 21:57:01 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
text: "Text item pointSize:"
|
|
|
|
}
|
|
|
|
Text {
|
|
|
|
text: font.pointSize
|
|
|
|
}
|
2015-11-06 21:57:01 +00:00
|
|
|
|
2016-03-08 20:26:54 +00:00
|
|
|
Kirigami.Label {
|
2016-02-10 23:11:04 +00:00
|
|
|
Layout.columnSpan: 2
|
|
|
|
Layout.fillHeight: true
|
|
|
|
}
|
2015-11-06 21:53:26 +00:00
|
|
|
}
|
|
|
|
}
|