import QtQuick import QtQuick.Layouts import qs.Common import qs.Services ColumnLayout { id: processesTab anchors.fill: parent spacing: Theme.spacingM property var contextMenu: null SystemOverview { Layout.fillWidth: true } ProcessListView { Layout.fillWidth: true Layout.fillHeight: true contextMenu: processesTab.contextMenu } }