From 6104a59cbdf6474acea6a8a1d4c865f3d88d2296 Mon Sep 17 00:00:00 2001 From: Debulois Date: Sun, 24 Apr 2022 17:16:05 +0200 Subject: Mise en place du système de connexion / enregistrement MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gui/windowAPropos.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/gui/windowAPropos.py (limited to 'src/gui/windowAPropos.py') diff --git a/src/gui/windowAPropos.py b/src/gui/windowAPropos.py new file mode 100644 index 0000000..9ecdfda --- /dev/null +++ b/src/gui/windowAPropos.py @@ -0,0 +1,14 @@ + +from PyQt5.QtWidgets import QMessageBox + + +def main(mainWindow): + QMessageBox.information( + mainWindow, + "A propos", + "Logiciel pour mon dossier professionnel.\ +
Version: %s\ +
Auteur: Debulois Quentin\ +
Code source: \ + git.debulois.fr/" % mainWindow.VERSION + ) -- cgit v1.2.3