summaryrefslogtreecommitdiff
path: root/src/gui/windowAPropos.py
diff options
context:
space:
mode:
authorDebulois <quentin@debulois.fr>2022-04-24 17:16:05 +0200
committerDebulois <quentin@debulois.fr>2022-04-24 17:16:05 +0200
commit6104a59cbdf6474acea6a8a1d4c865f3d88d2296 (patch)
tree2920dea1346aafb041643d87ba1bb6dc1a813ee2 /src/gui/windowAPropos.py
parent4c4f70bf6eb88a419add86e182d3080674196433 (diff)
Mise en place du système de connexion / enregistrement
Diffstat (limited to 'src/gui/windowAPropos.py')
-rw-r--r--src/gui/windowAPropos.py14
1 files changed, 14 insertions, 0 deletions
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.\
+ <br>Version: %s\
+ <br>Auteur: Debulois Quentin\
+ <br>Code source: \
+ <a href='https://git.debulois.fr/'>git.debulois.fr/</a>" % mainWindow.VERSION
+ )