diff options
author | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-07-07 05:37:17 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@automotivelinux.org> | 2019-07-07 05:37:17 +0000 |
commit | a197df97c53928c999bcb45e9b959187a998ee67 (patch) | |
tree | 3db5dce438fc912091fe07100682fa76a67fd249 | |
parent | 239a7a228065f8dcc8f1362c1e4f14f5a51cb2f9 (diff) | |
parent | a402cc2ca741d9ca7a1bc5b90a7874e2c5abfd79 (diff) |
Merge "Fix Taskmanager window layout"halibut_7.99.3halibut/7.99.37.99.3
-rw-r--r-- | app/main.qml | 37 |
1 files changed, 22 insertions, 15 deletions
diff --git a/app/main.qml b/app/main.qml index 3ea844c..4c4d7a9 100644 --- a/app/main.qml +++ b/app/main.qml @@ -1,16 +1,16 @@ import QtQuick 2.6 -import QtQuick.Window 2.2 import QtQuick.Controls 1.4 import QtQuick.Controls 2.0 as NewControls import QtQuick.Layouts 1.1 import TaskManager 1.0 import QtCharts 2.2 -Window { +ApplicationWindow { id: root visible: true - width: 745 - height: 480 + width: container.width * container.scale + height: container.height * container.scale + flags: Qt.Window | Qt.FramelessWindowHint TaskManager { id: taskmgr @@ -60,6 +60,13 @@ Window { id: libraryModel } + Item { + id: container + anchors.centerIn: parent + width: 1080 + height: 1487 + scale: screenInfo.scale_factor() + TabView { id: mainTabview currentIndex: 0 @@ -69,6 +76,7 @@ Window { id: processesTab active: true anchors.fill: parent + title: "Processes" Rectangle { @@ -84,16 +92,14 @@ Window { Row { id: buttonRow width: parent.width - anchors.top: mainTabview.top RowLayout { id: buttonRowLayout - spacing: 6 NewControls.Popup { id: infoPopup - x: 200 - y: 200 + x: 400 * container.scale + y: 400 * container.scale width: 300 height: 200 modal: true @@ -139,37 +145,37 @@ Window { TableViewColumn { role: "cmd" title: "Process" - width: 150 + width: 200 * container.scale } TableViewColumn { role: "tid" title: "ID" - width: 80 + width: 100 * container.scale } TableViewColumn { role: "user" title: "User" - width: 80 + width: 120 * container.scale } TableViewColumn { role: "system_cpu" title: "System %" - width: 100 + width: 160 * container.scale } TableViewColumn { role: "user_cpu" title: "User %" - width: 100 + width: 160 * container.scale } TableViewColumn { role: "resident_memory" title: "Memory" - width: 100 + width: 160 * container.scale } TableViewColumn { role: "state" title: "State" - width: 90 + width: 80 * container.scale } model: libraryModel } @@ -320,4 +326,5 @@ Window { } } } + } } |