0
0
mirror of https://github.com/bec-project/bec_widgets.git synced 2025-07-13 11:11:49 +02:00

feat(ui_launch_window): add UILaunchWindow class

This commit is contained in:
2025-04-14 21:40:46 +02:00
parent f653fc5f7e
commit 45cd82e635
2 changed files with 12 additions and 0 deletions

View File

@ -2905,6 +2905,14 @@ class TextBox(RPCBase):
"""
class UILaunchWindow(RPCBase):
@rpc_call
def remove(self):
"""
Cleanup the BECConnector
"""
class VSCodeEditor(RPCBase):
"""A widget to display the VSCode editor."""

View File

@ -165,3 +165,7 @@ class BECMainWindow(BECWidget, QMainWindow):
central_widget.close()
central_widget.deleteLater()
super().cleanup()
class UILaunchWindow(BECMainWindow):
RPC = True