-
Notifications
You must be signed in to change notification settings - Fork 0
/
Help.py
42 lines (33 loc) · 1.5 KB
/
Help.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# -*- coding: iso-8859-15 -*-
from tkinter import *
import Pmw
class FormAbout(Toplevel):
"""Classe définissant la fenêtre Aide"""
def __init__(self, appli):
"""Constructeur de la fenêtre Aide"""
# Nouvelle fenêtre pour Pmw
Toplevel.__init__(self)
Pmw.initialise()
# Paramétrage de la fenêtre
if ( sys.platform.startswith('win')):
self.iconbitmap("appli.ico")
self.resizable(width = False, height = False)
self.wm_state()
self.title ("Aide")
# C'est une fenêtre modale
self.transient(appli)
self.grab_set()
self.focus_set()
# Composants de la fenêtre
self.soft = StringVar()
Label (self, textvariable = self.soft, font=appli.fonteFixe).grid(row=1, column=0, sticky=W+E)
Label (self, text = "Aide à la gestion d'une opération", fg="blue", bg="orange").grid(row = 2, column = 0, sticky = W+E)
Label (self, text = "de secours avec réseau d'urgence.", fg="blue", bg="orange").grid(row = 3, column = 0, sticky = W+E)
self.web = StringVar()
Label (self, textvariable = self.web, font=appli.fonteFixe).grid(row=4, column=0, sticky=W+E)
Button(self, text = "OK", width = 10, command = self.destroy, fg = "blue").grid (row = 5, column = 0)
# Initialisation
self.soft.set(appli.userData['LOGICIEL'] + " " + appli.userData['VERSION'])
self.web.set("www.gesadra.fr")
#
#