41 lines
1.1 KiB
Python
41 lines
1.1 KiB
Python
#!/usr/bin/python
|
|
|
|
"""
|
|
WikiCookBook
|
|
|
|
Easily enter recipes and export them to beautiful wiki pages.
|
|
|
|
2020 © Marcel Kapfer <opensource@mmk2410.org>
|
|
MIT License
|
|
"""
|
|
|
|
import sys
|
|
from PyQt5.QtWidgets import QApplication, QMainWindow, QMessageBox
|
|
from ui_mainwindow import Ui_MainWindow
|
|
|
|
class MainWindow(QMainWindow, Ui_MainWindow):
|
|
def __init__(self, *args, **kwargs):
|
|
super(MainWindow, self).__init__(*args, **kwargs)
|
|
self.setupUi(self)
|
|
|
|
# Connect close actions
|
|
self.b_cancel.clicked.connect(self.close)
|
|
self.ma_close.triggered.connect(self.close)
|
|
|
|
self.show()
|
|
|
|
def close(self):
|
|
"""
|
|
Close the application. A warning is shown before.
|
|
"""
|
|
reply = QMessageBox.question(self, "Sicher?",
|
|
"Möchten Sie wirklich schließen?",
|
|
QMessageBox.Yes | QMessageBox.No, QMessageBox.No)
|
|
if reply == QMessageBox.Yes:
|
|
sys.exit(0)
|
|
|
|
if __name__ == "__main__":
|
|
app = QApplication([])
|
|
app.setApplicationName("WikiCookBook")
|
|
window = MainWindow()
|
|
app.exec_()
|