import QtQuick 2.3 import QtQuick.Controls 1.2 import QGroundControl.FactSystem 1.0 import QGroundControl.FactControls 1.0 import QGroundControl.Controls 1.0 import QGroundControl.Controllers 1.0 import QGroundControl.Palette 1.0 Item { anchors.fill: parent QGCPalette { id: qgcPal; colorGroupEnabled: enabled } APMAirframeComponentController { id: controller } property bool _frameAvailable: controller.parameterExists(-1, "FRAME") property Fact _frame: controller.getParameterFact(-1, "FRAME", false) property Fact _frameClass: controller.getParameterFact(-1, "FRAME_CLASS", false) property Fact _frameType: controller.getParameterFact(-1, "FRAME_TYPE", false) Column { anchors.fill: parent VehicleSummaryRow { labelText: qsTr("Frame Type") valueText: visible ? controller.currentAirframeTypeName() + " " + _frame.enumStringValue : "" visible: _frameAvailable } VehicleSummaryRow { labelText: qsTr("Frame Class") valueText: visible ? _frameClass.enumStringValue : "" visible: !_frameAvailable } VehicleSummaryRow { labelText: qsTr("Frame Type") valueText: visible ? _frameType.enumStringValue : "" visible: !_frameAvailable } VehicleSummaryRow { labelText: qsTr("Firmware Version") valueText: activeVehicle.firmwareMajorVersion == -1 ? qsTr("Unknown") : activeVehicle.firmwareMajorVersion + "." + activeVehicle.firmwareMinorVersion + "." + activeVehicle.firmwarePatchVersion + activeVehicle.firmwareVersionTypeString } } }