Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
O
Oil_Level_Recognition_System
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Oil_Level_Recognition_System
Commits
97b6ade4
Commit
97b6ade4
authored
Dec 05, 2025
by
余海波
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Delete __init__.py
parent
ea8cefed
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
32 deletions
+0
-32
__init__.py
handlers/videopage/__init__.py
+0
-32
No files found.
handlers/videopage/__init__.py
deleted
100644 → 0
View file @
ea8cefed
# -*- coding: utf-8 -*-
"""
视频页面相关的处理器
命名规范:组件名_handler.py → 组件名Handler 类
每个组件对应一个Handler类:
- ChannelPanelHandler (channelpanel_handler.py): 通道面板 - 通道连接、视频流、配置管理
- CurvePanelHandler (curvepanel_handler.py): 曲线面板 - 曲线数据、导出
- MissionPanelHandler (missionpanel_handler.py): 任务面板 - 任务管理、分页
- ModelSettingHandler (modelsetting_handler.py): 模型设置对话框
"""
from
.channelpanel_handler
import
ChannelPanelHandler
from
.curvepanel_handler
import
CurvePanelHandler
from
.missionpanel_handler
import
MissionPanelHandler
from
.modelsetting_handler
import
ModelSettingHandler
from
.general_set_handler
import
GeneralSetPanelHandler
from
.test_handler
import
TestHandler
# 新增测试调试处理器
from
.historypanel_handler
import
HistoryPanelHandler
# 历史回放面板处理器
__all__
=
[
'ChannelPanelHandler'
,
'CurvePanelHandler'
,
'MissionPanelHandler'
,
'ModelSettingHandler'
,
'GeneralSetPanelHandler'
,
'TestHandler'
,
# 导出测试调试处理器
'HistoryPanelHandler'
,
# 导出历史回放面板处理器
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment