Compare commits

..

No commits in common. "b84e21a2071878537f8cc2aa26c54dd3a27606ee" and "340a1ef389a717316a14423b5b47851a92b4ab34" have entirely different histories.

2 changed files with 10 additions and 9 deletions

View File

@ -1,16 +1,8 @@
from PySide6 import QtCore, QtWidgets
import sys
class Window(QtWidgets.QWidget):
class MainWindow(QtWidgets.QWidget):
def __init__(self):
super().__init__()
self.text = QtWidgets.QLabel("Hello World", alignment=QtCore.Qt.AlignCenter)
self.layout = QtWidgets.QVBoxLayout(self)
self.layout.addWidget(self.text)
app = QtWidgets.QApplication([])
main_window = Window()
main_window.resize(800, 600)
main_window.show()
sys.exit(app.exec())

View File

@ -1,7 +1,9 @@
#!/usr/bin/python3
import os
import sys
import gui_helper
import gui_handler
from PySide6 import QtWidgets
from config import Config
################################################################################
@ -22,3 +24,10 @@ configuration = Config(configuration_file_path, default_configuration)
################################################################################
# PROGRAM MAIN WINDOW
################################################################################
app = QtWidgets.QApplication([])
main_window = gui_handler.MainWindow()
main_window.resize(800, 600)
main_window.show()
sys.exit(app.exec())