mirror of
https://github.com/bec-project/bec_widgets.git
synced 2025-07-14 11:41:49 +02:00
feat(ui_launch_window): add UILaunchWindow class
This commit is contained in:
@ -2905,6 +2905,14 @@ class TextBox(RPCBase):
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
|
|
||||||
|
class UILaunchWindow(RPCBase):
|
||||||
|
@rpc_call
|
||||||
|
def remove(self):
|
||||||
|
"""
|
||||||
|
Cleanup the BECConnector
|
||||||
|
"""
|
||||||
|
|
||||||
|
|
||||||
class VSCodeEditor(RPCBase):
|
class VSCodeEditor(RPCBase):
|
||||||
"""A widget to display the VSCode editor."""
|
"""A widget to display the VSCode editor."""
|
||||||
|
|
||||||
|
@ -165,3 +165,7 @@ class BECMainWindow(BECWidget, QMainWindow):
|
|||||||
central_widget.close()
|
central_widget.close()
|
||||||
central_widget.deleteLater()
|
central_widget.deleteLater()
|
||||||
super().cleanup()
|
super().cleanup()
|
||||||
|
|
||||||
|
|
||||||
|
class UILaunchWindow(BECMainWindow):
|
||||||
|
RPC = True
|
||||||
|
Reference in New Issue
Block a user