18 lines
389 B
Python
18 lines
389 B
Python
"""
|
|
UI模块
|
|
|
|
包含所有用户界面相关的功能:
|
|
- widgets.py: 自定义Qt部件
|
|
- main_window.py: 主窗口设置
|
|
"""
|
|
|
|
from .widgets import CustomPanda3DWidget, CustomFileView, CustomTreeWidget
|
|
from .main_window import MainWindow, setup_main_window
|
|
|
|
__all__ = [
|
|
'CustomPanda3DWidget',
|
|
'CustomFileView',
|
|
'CustomTreeWidget',
|
|
'MainWindow',
|
|
'setup_main_window'
|
|
] |