diff options
| author | Debulois <quentin@debulois.fr> | 2022-04-20 13:17:36 +0200 |
|---|---|---|
| committer | Debulois <quentin@debulois.fr> | 2022-04-20 13:17:36 +0200 |
| commit | 4c4f70bf6eb88a419add86e182d3080674196433 (patch) | |
| tree | de407cee641f168c5ac325aa6a8b695ee04a429b /src/gui/aPropos.py | |
| parent | 41243ec2137bac39225231c0834f9d611fe94728 (diff) | |
Mis en place de la structure orientée objet
Diffstat (limited to 'src/gui/aPropos.py')
| -rw-r--r-- | src/gui/aPropos.py | 14 |
1 files changed, 14 insertions, 0 deletions
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.\ + <br>Version: %s\ + <br>Auteur: Debulois Quentin\ + <br>Code source: \ + <a href='https://git.debulois.fr/'>git.debulois.fr/</a>" % mainWindow.VERSION + ) |
