mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
It sounds like PySide2 will not be moving to Python 3.11, so we're stuck on 3.10 without this. Upgrading to a newer Qt also fixes some high DPI bugs (the file browser dialog for save/load is no longer tiny on 4k). https://github.com/pyinstaller/pyinstaller/issues/5414 previously blocked this, but the bug appears to be fixed now.
27 lines
923 B
Python
27 lines
923 B
Python
from PySide6.QtWidgets import QDialog, QGridLayout, QTabWidget
|
|
|
|
import qt_ui.uiconstants as CONST
|
|
from game.game import Game
|
|
from qt_ui.windows.stats.QAircraftChart import QAircraftChart
|
|
from qt_ui.windows.stats.QArmorChart import QArmorChart
|
|
|
|
|
|
class QStatsWindow(QDialog):
|
|
def __init__(self, game: Game):
|
|
super(QStatsWindow, self).__init__()
|
|
|
|
self.game = game
|
|
self.setModal(True)
|
|
self.setWindowTitle("Stats")
|
|
self.setWindowIcon(CONST.ICONS["Statistics"])
|
|
self.setMinimumSize(600, 300)
|
|
|
|
self.layout = QGridLayout()
|
|
self.aircraft_charts = QAircraftChart(self.game)
|
|
self.armor_charts = QArmorChart(self.game)
|
|
self.tabview = QTabWidget()
|
|
self.tabview.addTab(self.aircraft_charts, "Aircraft")
|
|
self.tabview.addTab(self.armor_charts, "Armor")
|
|
self.layout.addWidget(self.tabview, 0, 0)
|
|
self.setLayout(self.layout)
|