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