Commit 758b0b40 authored by eekkelund's avatar eekkelund

[scaling] Scaling of statusbar

parent 1f908037
...@@ -38,7 +38,7 @@ import MeeGo.Connman 0.2 ...@@ -38,7 +38,7 @@ import MeeGo.Connman 0.2
Item { Item {
id: root id: root
z: 201 z: 201
height: 48 height: root.width/12
width: parent.width width: parent.width
anchors.bottom: parent.bottom anchors.bottom: parent.bottom
...@@ -130,7 +130,7 @@ Item { ...@@ -130,7 +130,7 @@ Item {
RowLayout { RowLayout {
anchors.fill: statusbar anchors.fill: statusbar
spacing: 16 spacing: root.height/4
StatusbarItem { StatusbarItem {
source: (cellularSignalBars.value > 0) ? "image://theme/icon_cell" + cellularSignalBars.value : "image://theme/icon_cell1" source: (cellularSignalBars.value > 0) ? "image://theme/icon_cell" + cellularSignalBars.value : "image://theme/icon_cell1"
} }
...@@ -138,9 +138,9 @@ Item { ...@@ -138,9 +138,9 @@ Item {
StatusbarItem { StatusbarItem {
Label { Label {
id: tech id: tech
width: 16 width: root.height/4
height: 16 height: root.height/4
font.pointSize: 6 font.pointSize: root.height/14
font.bold: true font.bold: true
wrapMode: Text.ElideRight wrapMode: Text.ElideRight
text: (cellularNetworkName.value !== "") ? cellularNetworkName.value.substring(0,3).toUpperCase() : "NA" text: (cellularNetworkName.value !== "") ? cellularNetworkName.value.substring(0,3).toUpperCase() : "NA"
...@@ -148,10 +148,10 @@ Item { ...@@ -148,10 +148,10 @@ Item {
Label { Label {
anchors.top: tech.bottom anchors.top: tech.bottom
anchors.topMargin: 4 anchors.topMargin: root.height/8
width: 16 width: root.height/4
height: 16 height: root/height/4
font.pointSize: 6 font.pointSize: root.height/14
text: { text: {
var techToG = {gprs: "2", egprs: "2.5", umts: "3", hspa: "3.5", lte: "4", unknown: "0"} var techToG = {gprs: "2", egprs: "2.5", umts: "3", hspa: "3.5", lte: "4", unknown: "0"}
return techToG[cellularDataTechnology.value ? cellularDataTechnology.value : "unknown"] + "G" return techToG[cellularDataTechnology.value ? cellularDataTechnology.value : "unknown"] + "G"
...@@ -192,23 +192,23 @@ Item { ...@@ -192,23 +192,23 @@ Item {
source: "image://theme/icon_gps_normal" source: "image://theme/icon_gps_normal"
} }
StatusbarItem { StatusbarItem {
source: "image://theme/icon_play_pause" source: "image://theme/icon_play_pause"
} }
StatusbarItem { StatusbarItem {
Label { Label {
id: hours id: hours
width: 16 width: root.height/4
height: 16 height: root.height/4
font.pointSize: 6 font.pointSize: root.height/14
text: Qt.formatDateTime(wallClock.time, "hh") text: Qt.formatDateTime(wallClock.time, "hh")
} }
Label { Label {
id: minutes id: minutes
anchors.top: hours.bottom anchors.top: hours.bottom
anchors.topMargin: 4 anchors.topMargin: root.height/8
width: 16 width: root.height/4
height: 16 height: root.height/4
font.pointSize: 6 font.pointSize: root.height/14
text: Qt.formatDateTime(wallClock.time, "mm") text: Qt.formatDateTime(wallClock.time, "mm")
} }
} }
......
...@@ -9,6 +9,8 @@ Item { ...@@ -9,6 +9,8 @@ Item {
Layout.fillHeight: true Layout.fillHeight: true
Image { Image {
id: icon id: icon
width: root.height/2
height: root.height/2
anchors.centerIn: parent anchors.centerIn: parent
} }
MouseArea { MouseArea {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment