From fd1f9941e046b7ae1e247dde39c20bcbc37ac189 Mon Sep 17 00:00:00 2001 From: David Perl Date: Thu, 17 Jul 2025 18:56:36 +0200 Subject: [PATCH] chore: update client.py --- bec_widgets/cli/client.py | 56 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 56 insertions(+) diff --git a/bec_widgets/cli/client.py b/bec_widgets/cli/client.py index 5c7fb10e..a0462ccb 100644 --- a/bec_widgets/cli/client.py +++ b/bec_widgets/cli/client.py @@ -4378,6 +4378,62 @@ class SignalLabel(RPCBase): Show the button to select the signal to display """ + @property + @rpc_call + def show_hinted_signals(self) -> "bool": + """ + In the signal selection menu, show hinted signals + """ + + @show_hinted_signals.setter + @rpc_call + def show_hinted_signals(self) -> "bool": + """ + In the signal selection menu, show hinted signals + """ + + @property + @rpc_call + def show_normal_signals(self) -> "bool": + """ + In the signal selection menu, show normal signals + """ + + @show_normal_signals.setter + @rpc_call + def show_normal_signals(self) -> "bool": + """ + In the signal selection menu, show normal signals + """ + + @property + @rpc_call + def show_config_signals(self) -> "bool": + """ + In the signal selection menu, show config signals + """ + + @show_config_signals.setter + @rpc_call + def show_config_signals(self) -> "bool": + """ + In the signal selection menu, show config signals + """ + + @property + @rpc_call + def display_array_data(self) -> "bool": + """ + Displays the full data from array signals if set to True. + """ + + @display_array_data.setter + @rpc_call + def display_array_data(self) -> "bool": + """ + Displays the full data from array signals if set to True. + """ + class SignalLineEdit(RPCBase): """Line edit widget for device input with autocomplete for device names."""