-
Notifications
You must be signed in to change notification settings - Fork 2
/
DialogTypedData.py
68 lines (42 loc) · 1.65 KB
/
DialogTypedData.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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
from tkinter import *
class DialogTypedData:
def __init__(self, parent,mensagem):
self.bExit = True
top = self.top = Toplevel(parent)
Label(top, text=mensagem).pack()
self.e = Entry(top,width=70) # entrada de dados
self.e.pack(padx=5)
self.e.focus_set()
self.valor = ""
b = Button(top, text="OK", command=self.ok)
b.pack(pady=5)
######################################################
# centraliza a janela
# Obtem a altura e largura da janela
windowWidth = parent.winfo_reqwidth()
windowHeight = parent.winfo_reqheight()
print("Width",windowWidth,"Height",windowHeight)
# Obtem a posicao central
positionRight = int(parent.winfo_screenwidth()/2 - windowWidth/2)
positionDown = int(parent.winfo_screenheight()/2 - windowHeight/2)
# centraliza a janela
top.geometry("+{}+{}".format(positionRight, positionDown))
def ok(self):
self.bExit = False
print ("value is", self.e.get())
self.valor = self.e.get()
self.top.destroy()
############################
#root=Tk()
#sizex = 600
#sizey = 400
#posx = 20
#posy = 10
#root.wm_geometry("%dx%d+%d+%d" % (sizex, sizey, posx, posy))
#itemsforlistbox=['one','two','three','four','five','six','seven','eight 8888888888888888888888888888888888888888888']
#d = DialogTypedData(root,'selecione a opcao:')
#root.wait_window(d.top)
#print(d.valor)
#print(d.bExit)
#root.mainloop()
#############################