summaryrefslogtreecommitdiff
path: root/src/app/windowAPropos.py
diff options
context:
space:
mode:
authorDebulois <quentin@debulois.fr>2022-05-01 23:24:19 +0200
committerDebulois <quentin@debulois.fr>2022-05-01 23:24:19 +0200
commit809f5c2c7ce0bdf05287c6f1b5ec1330efb0c469 (patch)
tree786477393b2608d3dd118d3e9ae4e57380804b5a /src/app/windowAPropos.py
parent1eaf21fd423e5dedf1ed4361b0e9b6cbbcfc9fa0 (diff)
Ajout du système pour mandater et mise en page des documents
Diffstat (limited to 'src/app/windowAPropos.py')
-rw-r--r--src/app/windowAPropos.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/app/windowAPropos.py b/src/app/windowAPropos.py
new file mode 100644
index 0000000..2450e03
--- /dev/null
+++ b/src/app/windowAPropos.py
@@ -0,0 +1,15 @@
+
+from PyQt5.QtWidgets import QMessageBox
+
+
+def window_main(mainWindow: object) -> None:
+ """"""
+ QMessageBox.information(
+ mainWindow,
+ "A propos",
+ f"Logiciel pour mon dossier professionnel.\
+ <br>Version: {mainWindow.VERSION}\
+ <br>Auteur: Debulois Quentin\
+ <br>Code source: \
+ <a href='https://git.debulois.fr/'>git.debulois.fr/</a>"
+ )