forked from antoinelame/GazeTracking
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBotones_19.Ma.1839.py
277 lines (234 loc) · 9.55 KB
/
Botones_19.Ma.1839.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
from tkinter import *
gui = Tk()
#15133C AZUL MARINO(LOGO)
#73777B GRIS
#EC994B NARANJA
#F1EEE9 BLANCO
#4F6BFF AZUL CLARO
#GEOMETRIA DE LOGO ES 500X500
#### CONFIG
#####################################################################################################################################
photoimage = PhotoImage(file='C:\\Users\\oguzm\\Logo.png')
#### COLORES BOTONES
letras = "#F1EEE9"
backgnd = "#15133C"
### COLOR CANVA
fondocanva = "#EC994B"
#####################################################################################################################################
### NUEVO NUEVO NUEVO NUEVO
####################### CREAR CANVA CON LA IMAGEN DE FONDO
def Canva():
width, height = photoimage.width(), photoimage.height()
canvas = Canvas(gui, bg=fondocanva, width=1.5*width, height=height)
canvas.pack()
canvas.create_image(280,0, image=photoimage, anchor=NW)
Canva()
#####################################################################################################################################
### LÍNEA 111
####################### BOTON GLOBAL RETURN
def returnBut():
returnB = Button(gui,
text= 'Return',
command=rtn,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
returnB.place(x=30, y=240+144)
def rtn():
print("Perrón el return")
#####################################################################################################################################
####################### FUNCIONES: MAIN MENU ##################################################
def newSes():
print("Perrón la newSes")
def settings():
print("Perrón las settings")
def viewStats():
print("Perrón las stats")
def exitCom():
print("Perrón la exit")
#####################################################################################################################################
####################### BOTONES: MAIN MENU #####################################################
# SON LOS PRIMEROS EN APARECER
def mainMenu():
#Boton para iniciar una nueva sesion
newSesBut = Button(gui,
text= 'New Session',
command=newSes,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
newSesBut.place(x=30, y=0+36)
setBut = Button(gui,
text= 'Settings',
command=settings,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
setBut.place(x=30, y=80+72)
statBut = Button(gui,
text= 'View Stats',
command=viewStats,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
statBut.place(x=30, y=160+108)
exitBut = Button(gui,
text= 'Exit',
command=exitCom,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
exitBut.place(x=30, y=240+144)
#####################################################################################################################################
####################### FUNCIONES: NEW SESSION ####################################################
def pomodoro():
print("Perrón el pomodoro")
def progOwn():
print("Perrón las settings")
def viewStats():
print("Perrón las stats")
def exitCom():
print("Perrón la exit")
#####################################################################################################################################
# LÍNEA 152
####################### BOTONES: NEW SESS MENU ####################################################
def newSesMenu():
gui.title('New Session')
pomoBut = Button(gui,
text= 'Pomodoro',
command=pomodoro,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
pomoBut.place(x=30, y=0+36)
# 15,3,21
progBut = Button(gui,
text= 'Program your own session',
command=progOwn,
font=('Comic Sans',15),
height=3,
width=21,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
progBut.place(x=30, y=80+72)
returnBut()
#####################################################################################################################################
####################### FUNCIONES: NEW SESSION ###################################################
def calib():
print("Perrón el CALIB")
def soundP():
print("Perrón el Sound")
#####################################################################################################################################
### LÍNEA 162
####################### BOTONES: SETTINGS MENU ####################################################
def settingsMenu():
gui.title("Settings")
calibrationB= Button(gui,
text='Calibration',
command= calib,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
calibrationB.place(x=30, y=0+36)
soundBut= Button(gui,
text='Choose sound package',
command= soundP,
font=('Comic Sans',15),
height=3,
width=21,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
soundBut.place(x=30, y=80+72)
returnBut()
#####################################################################################################################################
# LÍNEA 173
####################### BOTONES: POMODORO ####################################################
def workMenu():
global pauseText
gui.title("Pomodoro Working Session")
start= Button(gui,
text='Start',
command=startSessionPomo,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
start.place(x=30, y=0+36)
pause = Button(gui,
text=pauseText,
command=pauseSession,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
pause.place(x=30, y=80+72)
returnBut()
#####################################################################################################################################
### LÍNEA 211
#####################################################################################################################################
def breakMenu():
clear_frame()
gui.title("Pomodoro Break")
startB= Button(gui,
text='Start Break',
command= breakStart,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
startB.place(x=30, y=0+36)
pauseB = Button(gui,
text=pauseText,
command=breakPause,
font=('Comic Sans',30),
height=1,
width=10,
fg=letras,
bg=backgnd,
activeforeground=backgnd,
activebackground=letras,)
pauseB.place(x=30, y=80+72)
returnBut()
#####################################################################################################################################
gui.mainloop()