mirror of
https://github.com/RedDeadDepresso/KKAFIO.git
synced 2025-12-22 09:20:02 +00:00
40 lines
1.0 KiB
Python
40 lines
1.0 KiB
Python
# coding:utf-8
|
|
import os
|
|
import sys
|
|
|
|
from PySide6.QtCore import Qt, QTranslator
|
|
from PySide6.QtGui import QFont
|
|
from PySide6.QtWidgets import QApplication
|
|
from qfluentwidgets import FluentTranslator
|
|
|
|
from app.common.config import cfg
|
|
from app.view.main_window import MainWindow
|
|
|
|
|
|
# enable dpi scale
|
|
if cfg.get(cfg.dpiScale) != "Auto":
|
|
os.environ["QT_ENABLE_HIGHDPI_SCALING"] = "0"
|
|
os.environ["QT_SCALE_FACTOR"] = str(cfg.get(cfg.dpiScale))
|
|
|
|
# create application
|
|
app = QApplication(sys.argv)
|
|
app.setAttribute(Qt.AA_DontCreateNativeWidgetSiblings)
|
|
|
|
# fixes issue: https://github.com/zhiyiYo/PyQt-Fluent-Widgets/issues/848
|
|
if sys.platform == 'win32' and sys.getwindowsversion().build >= 22000:
|
|
app.setStyle("fusion")
|
|
|
|
|
|
# internationalization
|
|
locale = cfg.get(cfg.language).value
|
|
translator = FluentTranslator(locale)
|
|
galleryTranslator = QTranslator()
|
|
galleryTranslator.load(locale, "gallery", ".", ":/gallery/i18n")
|
|
|
|
app.installTranslator(translator)
|
|
app.installTranslator(galleryTranslator)
|
|
|
|
# create main window
|
|
w = MainWindow()
|
|
w.show()
|
|
app.exec() |