From ee72f76952607c3841a01a2e4e8e09aa033ffc3b Mon Sep 17 00:00:00 2001 From: hyb-oyqq <1512383570@qq.com> Date: Thu, 7 Aug 2025 18:25:54 +0800 Subject: [PATCH] =?UTF-8?q?feat(ui):=20=E6=B7=BB=E5=8A=A0Qt=E6=A0=B8?= =?UTF-8?q?=E5=BF=83=E7=BB=84=E4=BB=B6=E4=BB=A5=E6=94=AF=E6=8C=81=E8=BF=9B?= =?UTF-8?q?=E5=BA=A6=E5=AF=B9=E8=AF=9D=E6=A1=86=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 在helpers.py中引入Qt核心和窗口组件,准备实现进度对话框功能。 - 更新导入模块,提升代码结构和可维护性。 --- source/utils/helpers.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/source/utils/helpers.py b/source/utils/helpers.py index 8e43ce0..6efbf58 100644 --- a/source/utils/helpers.py +++ b/source/utils/helpers.py @@ -9,6 +9,8 @@ import psutil from PySide6 import QtCore, QtWidgets import re from PySide6.QtGui import QIcon, QPixmap +from PySide6.QtCore import Qt +from PySide6.QtWidgets import QDialog, QVBoxLayout, QHBoxLayout, QLabel, QPushButton, QProgressBar from data.config import APP_NAME, CONFIG_FILE from utils.logger import setup_logger import datetime