-
Notifications
You must be signed in to change notification settings - Fork 0
/
MenuPrincipal.py
51 lines (38 loc) · 1.65 KB
/
MenuPrincipal.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
from EntradaVeiculo import *
from CadastroCobrador import *
from Patio import *
from Calcular import *
from tkinter import *
from Baixa import *
from GerenciarCobrador import *
class GUIMenuPrincipal(object):
def __init__(self, usuario):
self.__janela = Tk()
self.__usuario = usuario
self.__janela.title("Menu Principal, Usuário: " + self.__usuario)
self.__janela.geometry("500x500+450+100")
self.__janela.focus_force()
btcadastro_cobrador = Button(self.__janela, text="Novo Cobrador", command=self.novo_cobrador, width=20, height=3)
btcadastro_cobrador.grid(row=0, column=0)
Button(self.__janela, text="Lista de cobradores", command=self.gerenciar_cobrador, width=20, height=3).grid(row=0, column=1)
btcadastro_veiculo = Button(self.__janela, text="Novo Veiculo", command=self.novo_veiculo, width=20, height=3)
btcadastro_veiculo.grid(row=1, column=0)
btpateo = Button(self.__janela, text="Patio", command=self.patio, width=20, height=3)
btpateo.grid(row=2, column=0)
btcalc = Button(self.__janela, text="Calcular", command=self.calc, width=20, height=3)
btcalc.grid(row=3, column=0)
btbaixa = Button(self.__janela, text="Baixa", command=self.baixa, width=20, height=3)
btbaixa.grid(row=4, column=0)
self.__janela.mainloop()
def novo_cobrador(self):
CadastroCobrador()
def gerenciar_cobrador(self):
GerenciarCobrador()
def novo_veiculo(self):
EntradaVeiculo(self.__usuario)
def patio(self):
Patio()
def calc(self):
Calcular(self.__usuario)
def baixa(self):
Baixa()