-
Notifications
You must be signed in to change notification settings - Fork 0
/
Main_Louise.py
169 lines (135 loc) · 6.33 KB
/
Main_Louise.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
from pathlib import Path
import ttkbootstrap as ttk
from ttkbootstrap.constants import *
from ttkbootstrap.dialogs import Messagebox
from util.util import Util
from view.janelaHipoteseNaoParametrico2Grupos import JanelaHipoteseNaoParametrico2Grupos
from view.janelaHipoteseNaoParametricoMais2Grupos import JanelaHipoteseNaoParametricoMais2Grupos
from view.janelaHipoteseParametrico2Grupos import JanelaHipoteseParametrico2Grupos
from view.janelaHipoteseParametricoMais2Grupos import JanelaHipoteseParametricoMais2Grupos
from view.janelaNormalidade import JanelaNormalidade
CAMINHO_IMAGEM = Path(__file__).parent / 'img'
class Main_Louise(ttk.Frame):
def __init__(self, *args, **kwargs):
super().__init__(*args, **kwargs)
self.util = Util()
self.criarJanela()
def criarJanela(self):
x = (self.winfo_screenwidth() // 2) - (self.util.larguraTela // 2)
y = (self.winfo_screenheight() // 2) - (self.util.alturaTela // 2)
self.pack(fill=BOTH, expand=YES)
self.master.geometry("{}x{}+{}+{}".format(self.util.larguraTela, self.util.alturaTela, x, y))
self.master.title("Louise - Teste de Hipótese - Versão " + str(self.util.versao_1_0_1))
self.master.iconbitmap(CAMINHO_IMAGEM.__str__() + "\\lamed.ico")
self.photoimages = []
imgpath = Path(__file__).parent / 'img'
for key, val in self.util.arquivo_imagem.items():
_path = imgpath / val
self.photoimages.append(ttk.PhotoImage(name=key, file=_path))
# buttonbar
buttonbar = ttk.Frame(self, style='primary.TFrame')
buttonbar.pack(fill=X, pady=1, side=TOP)
## new backup
_func = lambda: self.showFrameTeste()
btn = ttk.Button(
master=buttonbar,
text='Testes',
image='curve',
compound=LEFT,
command=_func
)
btn.pack(side=LEFT, ipadx=5, ipady=5, padx=(1, 0), pady=1)
## backup
_func = lambda: self.showSobre()
btn = ttk.Button(
master=buttonbar,
text='Sobre',
image='sobre',
compound=LEFT,
command=_func
)
btn.pack(side=LEFT, ipadx=5, ipady=5, padx=0, pady=1)
## refresh
_func = lambda: self.master.destroy()
btn = ttk.Button(
master=buttonbar,
text='Sair',
image='sair',
compound=LEFT,
command=_func
)
btn.pack(side=LEFT, ipadx=5, ipady=5, padx=0, pady=1)
# painel central
painelCentral = ttk.Frame(self, padding=(1, 1), bootstyle="light")
painelCentral.pack(side=TOP, fill=BOTH, expand=YES)
textoSelecioneTeste = "Selecione o teste"
self.frameSelecioneTeste = ttk.Labelframe(painelCentral, text=textoSelecioneTeste, bootstyle="dark")
self.frameTestesNormalidadeHipoteses = ttk.Frame(self.frameSelecioneTeste, bootstyle="light")
self.frameTestesNormalidadeHipoteses.pack(fill=BOTH, expand=Y, anchor=N)
self.labelNormalidade = ttk.Label(self.frameTestesNormalidadeHipoteses, text="Testes de Normalidade:", width=50)
self.labelNormalidade.place(x=30, y=30)
botaoTesteNormalidade = ttk.Button(
master=self.frameTestesNormalidadeHipoteses,
text="Normalidade",
command=lambda: self.openJanelaNormalidade(),
bootstyle=INFO,
width=25
)
botaoTesteNormalidade.place(x=50, y=80)
self.labelHipotese = ttk.Label(self.frameTestesNormalidadeHipoteses, text="Testes de Hipótese:", width=50)
self.labelHipotese.place(x=30, y=130)
botaoTesteHipoteseParametrico2Grupos = ttk.Button(
master=self.frameTestesNormalidadeHipoteses,
text="Paramétrico 2 Grupos",
command=lambda: self.openJanelaHipoteseParametrico2Grupos(),
bootstyle=PRIMARY,
width=25
)
botaoTesteHipoteseParametrico2Grupos.place(x=50, y=180)
botaoTesteHipoteseParametricoMais2Grupos = ttk.Button(
master=self.frameTestesNormalidadeHipoteses,
text="Paramétrico > 2 Grupos",
command=lambda: self.openJanelaHipoteseParametricoMais2Grupos(),
bootstyle=PRIMARY,
width=25
)
botaoTesteHipoteseParametricoMais2Grupos.place(x=250, y=180)
botaoTesteHipoteseNaoParametrico2Grupos = ttk.Button(
master=self.frameTestesNormalidadeHipoteses,
text="Não Paramétrico 2 Grupos",
command=lambda: self.openJanelaHipoteseNaoParametrico2Grupos(),
bootstyle=PRIMARY,
width=25
)
botaoTesteHipoteseNaoParametrico2Grupos.place(x=50, y=230)
botaoTesteHipoteseNaoParametricoMais2Grupos = ttk.Button(
master=self.frameTestesNormalidadeHipoteses,
text="Não Paramétrico > 2 Grupos",
command=lambda: self.openJanelaHipoteseNaoParametricoMais2Grupos(),
bootstyle=PRIMARY,
width=25
)
botaoTesteHipoteseNaoParametricoMais2Grupos.place(x=250, y=230)
self.frameSelecioneTeste.pack_forget()
def openJanelaHipoteseParametricoMais2Grupos(self):
JanelaHipoteseParametricoMais2Grupos()
def openJanelaHipoteseNaoParametricoMais2Grupos(self):
JanelaHipoteseNaoParametricoMais2Grupos()
def openJanelaNormalidade(self):
JanelaNormalidade()
def openJanelaHipoteseParametrico2Grupos(self):
JanelaHipoteseParametrico2Grupos()
def openJanelaHipoteseNaoParametrico2Grupos(self):
JanelaHipoteseNaoParametrico2Grupos()
def showFrameTeste(self):
self.frameSelecioneTeste.pack(fill=BOTH, expand=YES, anchor=N)
def showSobre(self):
mensagem = "Louise tem como objetivo fornecer uma ferramenta livre com suporte à interface gráfica para a realização de teste de hipótese.\n Contato: [email protected]"
percentagemLargura = int((self.util.larguraTela // 2) * 0.50)
#Messagebox.show_info(mensagem, title='Sobre', alert=True, parent=self)
Messagebox.show_info(mensagem, title='Sobre', alert=True, parent=self,
position=((self.util.larguraTela // 2) + percentagemLargura, self.util.alturaTela // 2))
#if __name__ == '__main__':
# app = ttk.Window()
# Louise(app)
# app.mainloop()