22 lines
402 B
Python
22 lines
402 B
Python
# -*- coding: utf-8 -*-
|
|
"""
|
|
패널 UI 패키지
|
|
영역별 UI 패널 정의 (인포바, 상태바, 컨텐츠 등)
|
|
"""
|
|
|
|
from .info_bar import InfoBar
|
|
from .status_bar import StatusBar
|
|
from .content_panel import ContentPanel
|
|
from .section_panel import SectionPanel
|
|
from .todo_panel import TodoPanel
|
|
|
|
__all__ = [
|
|
'InfoBar',
|
|
'StatusBar',
|
|
'ContentPanel',
|
|
'SectionPanel',
|
|
'TodoPanel',
|
|
]
|
|
|
|
|