handOver2/ui/dialogs/user_management_dialog.py

35 lines
937 B
Python

# -*- coding: utf-8 -*-
"""
사용자 관리 다이얼로그 모듈
사용자 관리를 위한 다이얼로그입니다.
"""
from ui.base.base_dialog import BaseDialog
from core.logger import get_logger
logger = get_logger(__name__)
class UserManagementDialog(BaseDialog):
"""
사용자 관리 다이얼로그
사용자 추가, 편집, 삭제를 위한 다이얼로그입니다.
(추후 구현)
"""
def __init__(self, parent=None):
super().__init__(parent, title="사용자 관리", width=600, height=450)
# TODO: 사용자 관리 UI 구현
from PySide6.QtWidgets import QLabel
from PySide6.QtCore import Qt
info = QLabel("사용자 관리 기능은 추후 구현 예정입니다.")
info.setAlignment(Qt.AlignCenter)
self.content_layout.addWidget(info)
self.add_button("닫기", self.accept, primary=True)