Index: sources/gui/qml/pages/SettingsDeviceInformation.qml =================================================================== diff -u -r0f0a1ba80bba810155cfde30c054d94e7ac3fe0e -r62d4bbefa96100e5a01194c0b704fe32d9db56ec --- sources/gui/qml/pages/SettingsDeviceInformation.qml (.../SettingsDeviceInformation.qml) (revision 0f0a1ba80bba810155cfde30c054d94e7ac3fe0e) +++ sources/gui/qml/pages/SettingsDeviceInformation.qml (.../SettingsDeviceInformation.qml) (revision 62d4bbefa96100e5a01194c0b704fe32d9db56ec) @@ -30,11 +30,11 @@ */ ScreenItem { id: _root - signal clickedBack() + signal backClicked() BackButton { id : _backButton onClicked: { - _root.clickedBack() + _root.backClicked() } } @@ -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() + } + } + } }