summaryrefslogtreecommitdiff
path: root/src/gui/aPropos.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui/aPropos.py')
-rw-r--r--src/gui/aPropos.py14
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
+ )