Skip to content

inspector_controller

Classes:

InspectorController

InspectorController(inspector_widget: BRMSInspectorWidget)

Bases: BRMSController

Methods:

format_instrument_details_for_inspector_tree_view

format_instrument_details_for_inspector_tree_view(
    data: dict,
) -> list[dict]

Convert a dictionary to a list of dictionaries with keys 0 and 1.

Example usage: data = {"Property1": "Value1", "Property2": "Value2"} Output: [{0: 'Property1', 1: 'Value1'}, {0: 'Property2', 1: 'Value2'}]

data = {"Property1": "Value1", "PropertyGroup": {"Sub-property": "Sub-value"}} Output: [{0: 'Property1', 1: 'Value1'}, {0: 'PropertyGroup', 1: '', '_children': [{0: 'Sub-property', 1: 'Sub-value'}]}]

show_instrument_details

show_instrument_details(instrument: Instrument) -> None

Show the details of the given instrument in the inspector view.