-
Notifications
You must be signed in to change notification settings - Fork 0
/
telas_de_verificacao.py
51 lines (47 loc) · 1.75 KB
/
telas_de_verificacao.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
import pygame
import tkinter
def tela_vitoria():
# Criando a janela
pop_up = tkinter.Tk()
pop_up.title("Parabéns")
mensagem = "Parabéns, você ganhou! :)"
# Cria um label com a mensagem
label = tkinter.Label(pop_up, text=mensagem, pady=10)
label.pack()
# Cria um botão para fechar a janela
button = tkinter.Button(pop_up, text="OK", command=pop_up.destroy)
button.pack()
pop_up.geometry("300x100")
# Define as coordenadas para o centro da tela
pop_up.update_idletasks()
largura = pop_up.winfo_width()
altura = pop_up.winfo_height()
x = (pop_up.winfo_screenwidth() // 2) - (largura // 2)
y = (pop_up.winfo_screenheight() // 2) - (altura // 2)
# Definindo posição do pop-up na tela
pop_up.geometry('{}x{}+{}+{}'.format(largura, altura, x, y))
# Espera o usuário apertar no ok, após isso encerra o jogo
pop_up.mainloop()
pygame.quit()
exit()
def tela_resposta_errada():
# Criando a janela
pop_up = tkinter.Tk()
pop_up.title("Você Consegue!")
mensagem = "Resposta Incorreta :(\nTente mais um pouco!"
# Cria um label com a mensagem
label = tkinter.Label(pop_up, text=mensagem, pady=10)
label.pack()
# Cria um botão para fechar a janela
button = tkinter.Button(pop_up, text="OK", command=pop_up.destroy)
button.pack()
pop_up.geometry("300x100")
# Define as coordenadas para o centro da tela
pop_up.update_idletasks()
largura = pop_up.winfo_width()
altura = pop_up.winfo_height()
x = (pop_up.winfo_screenwidth() // 2) - (largura // 2)
y = (pop_up.winfo_screenheight() // 2) - (altura // 2)
# Definindo posição do pop-up na tela
pop_up.geometry('{}x{}+{}+{}'.format(largura, altura, x, y))
pop_up.mainloop()