mirror of
https://github.com/dcs-liberation/dcs_liberation.git
synced 2025-11-10 14:22:26 +00:00
17 lines
488 B
Python
17 lines
488 B
Python
from PySide2.QtGui import QWindow
|
|
from PySide2.QtWidgets import QHBoxLayout, QLabel, QWidget
|
|
|
|
|
|
class QBriefingWindow(QWindow):
|
|
|
|
def __init__(self, parent):
|
|
super(QBriefingWindow, self).__init__(parent)
|
|
self.initUi()
|
|
|
|
def initUi(self):
|
|
layout = QHBoxLayout()
|
|
layout.addWidget(QLabel("TODO : This will be the briefing window"))
|
|
|
|
central_widget = QWidget()
|
|
central_widget.setLayout(layout)
|
|
self.setCentralWidget(central_widget) |