Index: sources/gui/qml/pages/SettingsDeviceInformation.qml =================================================================== diff -u -r0f0a1ba80bba810155cfde30c054d94e7ac3fe0e -r21e68ccf5594b0ca3e0a8c7986e405260d273899 --- sources/gui/qml/pages/SettingsDeviceInformation.qml (.../SettingsDeviceInformation.qml) (revision 0f0a1ba80bba810155cfde30c054d94e7ac3fe0e) +++ sources/gui/qml/pages/SettingsDeviceInformation.qml (.../SettingsDeviceInformation.qml) (revision 21e68ccf5594b0ca3e0a8c7986e405260d273899) @@ -48,4 +48,24 @@ text: qsTr("Device Information") } + InformationTable { id: _table + leftColumnTitle: "Versions" + rightColumnTitle: "System Usage" + anchors { + horizontalCenter: _root.horizontalCenter + bottomMargin: 2*Variables.mainMenuHeight + bottom: _root.bottom + } + height: 500 + width: Variables.informationTableWidth + headerVisible: false + onVisibleChanged: { + if (visible) { + subTable.leftColumnKeys = vDeviceInformation.doGetVersionKeys() + subTable.leftColumnValues = vDeviceInformation.doGetVersionValues() + subTable.rightColumnKeys = vDeviceInformation.doGetSystemUsageKeys() + subTable.rightColumnValues = vDeviceInformation.doGetSystemUsageValues() + } + } + } }