界面修改以及显示

This commit is contained in:
2025-10-31 18:52:31 +08:00
parent bd0815d0e7
commit 290324b5e4
93 changed files with 17169 additions and 12529 deletions

View File

@ -1,4 +1,6 @@
from view.main_window import MainWindow
from .camera_controller import CameraController
from .bottom_control_controller import BottomControlController
class MainController:
def __init__(self):
@ -9,7 +11,7 @@ class MainController:
self._initSubViews()
# 初始化子控制器
# self._initSubControllers()
self._initSubControllers()
# self.__connectSignals()
@ -17,5 +19,17 @@ class MainController:
def showMainWindow(self):
self.main_window.show()
def _initSubControllers(self):
# 振捣视频控制
self.camera_controller = CameraController(
video_view=self.main_window.vibration_video
)
# 底部控制(按钮)控制器
self.bottom_control_controller = BottomControlController(
bottom_control_widget=self.main_window.bottom_control_widget,
main_window=self.main_window
)
def _initSubViews(self):
pass
pass