You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
454 B
20 lines
454 B
# constants.py
|
|
from PyQt5.QtGui import QColor
|
|
|
|
# 支持的文件格式
|
|
SUPPORTED_FORMATS = ['.txt', '.docx', '.pdf']
|
|
|
|
# 默认窗口大小
|
|
DEFAULT_WINDOW_SIZE = (800, 600)
|
|
|
|
# 颜色定义
|
|
COLOR_CORRECT = QColor('lightgreen')
|
|
COLOR_WRONG = QColor('lightcoral')
|
|
COLOR_HIGHLIGHT = QColor('yellow')
|
|
|
|
# API配置
|
|
WEATHER_API_KEY = "your_weather_api_key"
|
|
QUOTE_API_URL = "https://api.quotable.io/random"
|
|
|
|
# 其他常量
|
|
MAX_FILE_SIZE = 10 * 1024 * 1024 # 10MB |