mirror of
https://github.com/marcriera/ddgo-converter.git
synced 2025-04-19 10:29:29 +02:00
17 lines
496 B
Python
Executable file
17 lines
496 B
Python
Executable file
import sys
|
|
from PyQt5 import uic
|
|
from PyQt5.QtWidgets import QMainWindow
|
|
from gui.main_ui import Ui_MainWindow
|
|
|
|
class MainWindow(QMainWindow):
|
|
def __init__(self, main_controller):
|
|
super().__init__()
|
|
|
|
self._main_controller = main_controller
|
|
self._gui = Ui_MainWindow()
|
|
self._gui.setupUi(self)
|
|
|
|
self._gui.pushButton_emulatedControllerStart.clicked.connect(self.startPressed)
|
|
|
|
def startPressed(self):
|
|
self._gui.statusbar.showMessage("Hello!")
|