From 4c4f70bf6eb88a419add86e182d3080674196433 Mon Sep 17 00:00:00 2001 From: Debulois Date: Wed, 20 Apr 2022 13:17:36 +0200 Subject: Mis en place de la structure orientée objet MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/gui/aPropos.py | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 src/gui/aPropos.py (limited to 'src/gui/aPropos.py') diff --git a/src/gui/aPropos.py b/src/gui/aPropos.py new file mode 100644 index 0000000..49cb663 --- /dev/null +++ b/src/gui/aPropos.py @@ -0,0 +1,14 @@ + +from PyQt5.QtWidgets import QMessageBox + + +def a_propos(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