Bread_Editor/main.py
EKNr1 2797c3ca44 File opening working.
(Only the popup that sets the variable.)
2024-11-17 18:54:51 +01:00

31 lines
663 B
Python

#!/usr/bin/python3
import sys
from PyQt6 import QtWidgets
from gui.main_window import Ui_MainWindow
from utils import Utils
from connect_gui import connect_gui
class BreadEditor:
def __init__(self):
self.utils = Utils(self)
self.open_files = []
self.qt_app = QtWidgets.QApplication(sys.argv)
self.QTMainWindow = QtWidgets.QMainWindow()
self.main_window = Ui_MainWindow()
self.main_window.setupUi(self.QTMainWindow)
connect_gui(self)
def run(self):
self.QTMainWindow.show()
sys.exit(self.qt_app.exec())
if __name__ == "__main__":
editor = BreadEditor()
editor.run()