Skip to content

Commit

Permalink
Disposition du logiciel
Browse files Browse the repository at this point in the history
  • Loading branch information
jtpaquet committed Jun 6, 2018
1 parent 78a335f commit 8d397f5
Show file tree
Hide file tree
Showing 101 changed files with 803 additions and 1,183 deletions.
766 changes: 766 additions & 0 deletions Template App/PiCameraGUI_template.py

Large diffs are not rendered by default.

23 changes: 23 additions & 0 deletions Template App/main_template.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
# Main_template

from PiCameraGUI_template import PiCameraGUI_template
from tkinter import Tk, messagebox

# Exécute le programme
def run():
try:
win = Tk()
except:
messagebox.showerror("Erreur Tkinter", "Erreur d'initialisation de l'interface graphique")
raise TkinterError("Erreur d'initialisation de Tkinter")
print("Terminé")
return 0

win.resizable(width=False, height=False)
appGeneral = PiCameraGUI_template(win,title="self.title")
win.mainloop()

# Exécute le programme
if __name__ == "__main__":
print("Initialisation de la fenêtre")
run()
Binary file modified __pycache__/PiCameraGUI.cpython-35.pyc
Binary file not shown.
38 changes: 0 additions & 38 deletions docs/Exemple/index.rst

This file was deleted.

1 change: 0 additions & 1 deletion docs/Exemple/lien

This file was deleted.

165 changes: 0 additions & 165 deletions docs/Exemple/quickstart.rst

This file was deleted.

0 comments on commit 8d397f5

Please sign in to comment.