diff --git a/frontend/app.py b/frontend/app.py index 16f10f8..db097c5 100644 --- a/frontend/app.py +++ b/frontend/app.py @@ -7,7 +7,7 @@ import structlog from PyQt6 import QtGui -from PyQt6.QtWidgets import QMainWindow, QTabWidget, QProgressBar, QWidget +from PyQt6.QtWidgets import QMainWindow, QTabWidget, QProgressBar, QWidget, QMessageBox from frontend import config from .ui_facial_feature_extraction import FacialFeatureExtraction @@ -18,6 +18,29 @@ def add_space_between_words(text): return re.sub(r"(\w)([A-Z])", r"\1 \2", text) +LICENCE_TEXT = """ +JeFaPaTo is licensed under the MIT License. + +MIT License + +Copyright (c) [2023] [Tim Büchner] + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +""" + class JeFaPaTo(QMainWindow, config.Config): def __init__(self, args: argparse.Namespace) -> None: """ @@ -61,6 +84,16 @@ def __init__(self, args: argparse.Namespace) -> None: self.statusBar().addPermanentWidget(self.progress_bar) + # Create menu bar + menu_bar = self.menuBar() + # Create Help menu + help_menu = menu_bar.addMenu("Help") + + help_menu.addAction("About", self.show_about) + help_menu.addAction("Documentation", self.show_documentation) + help_menu.addAction("License", self.show_license) + help_menu.addAction("Acknowledgements", self.show_acknowledgements) + def closeEvent(self, event: QtGui.QCloseEvent) -> None: """ Event handler for the close event of the application window. @@ -81,3 +114,64 @@ def closeEvent(self, event: QtGui.QCloseEvent) -> None: self.save() logger.info("Internal Shut Down complete", widget=self) super().closeEvent(event) + + def show_about(self): + """ + Shows the About dialog. + """ + ## use a dialog to show the about information + dialog = QMessageBox() + dialog.setWindowTitle("About JeFaPaTo") + dialog.setText("JeFaPaTo - Jena Facial Palsy Tool") + dialog.setInformativeText(""" +