-
Notifications
You must be signed in to change notification settings - Fork 2
/
chronometer.py
executable file
·154 lines (116 loc) · 3.76 KB
/
chronometer.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
#!/usr/bin/env python
# -*- encoding: utf8 -*-
# vim: ts=4
# Conference Chronometer está disponible bajo la Licencia Creative Commons
# "Atribución-No Comercial-Licenciar Igual 2.0 Chile". Puede encontrar una
# copia en http://creativecommons.org/licenses/by-nc-sa/2.0/cl/
# Autor: Renato M. Covarrubias Romero
# Email: rnt [at] rnt.cl
# URL : http://rnt.cl/software/conference-chronometer/
import gtk
import gtk.gdk
import gobject
import sys
import pango
class Cronometro:
'''
Esta clase maneja el cronómetro.
Cronómero de máximo 99 minutos con 59 segundos.
'''
def progress_timeout(self):
'''
Método usado como callback para modificar la barra de progreso.
Llamado cada un segundo, actualiza:
- El texto mostrado.
- El tamaño de la barra.
- El color de fondo de la barra.
Al finalizar el tiempo, produce que el reloj se detenga y se
muestre el botón para cerrar.
'''
self.tiempo+=1
if self.tiempo > self.maxtiempo:
return False
self.pbar.set_text(self.formato % (str(self.tiempo/60).zfill(2), str(self.tiempo%60).zfill(2)))
rel=float(self.tiempo)/float(self.maxtiempo)
self.pbar.set_fraction(rel)
# Resta un 10% del tiempo, la barra a color rojo.
# Resta un 50% del tiempo, la barra a color amarillo.
if rel>0.9:
self.pbar.modify_bg(gtk.STATE_SELECTED, gtk.gdk.color_parse("red") )
elif rel>0.5:
self.pbar.modify_bg(gtk.STATE_SELECTED, gtk.gdk.color_parse("yellow") )
return True
def destroy_progress(self, widget, data=None):
" Se elimina el timer y se termina la aplicación."
gobject.source_remove(self.timer)
self.timer = 0
gtk.main_quit()
def __init__(self):
"""
Contructor del objeto
El primer argumento de entrada son los minutos a mostrar
"""
# Definiendo la entrada, como los minutos a contar.
self.maxtiempo = int(sys.argv[1])*60
self.tiempo = 0
self.formato="%s:%s"
# Creamos una ventana nueva
self.window = gtk.Window(gtk.WINDOW_TOPLEVEL)
self.window.set_resizable(True)
# Conectamos la acción 'destroy' al método 'destroy_progress'
self.window.connect("destroy", self.destroy_progress)
self.window.fullscreen()
# Contenedor vertical: Barra de progreso y botón para Cerrar
vbox = gtk.VBox(False, 2)
vbox.set_border_width(1)
self.window.add(vbox)
vbox.show()
# Creamos un objeto que siempre utilizará el tamaño máximo de la
# ventana.
align = gtk.Alignment(0, 0, 1, 1)
vbox.pack_start(align)
align.show()
# Creamos la barra de progreso. Tipo de letra sans y tamaño 300.
self.pbar = gtk.ProgressBar()
self.pbar.set_text(self.formato % ("00", "00"))
self.pbar.modify_font(pango.FontDescription("sans 300"))
self.pbar.modify_fg(gtk.STATE_PRELIGHT, gtk.gdk.color_parse("black"))
align.add(self.pbar)
self.pbar.show()
# Agregamos el callback para el timer que actualizará la barra de
# progreso.
self.timer = gobject.timeout_add (1000, self.progress_timeout)
# Agregamos el botón para salir del cronómetro
self.button = gtk.Button("Cerrar")
self.button.connect("clicked", self.destroy_progress)
vbox.pack_start(self.button, False)
# Esto hace que el botón sea el elemento por defecto
self.button.set_flags(gtk.CAN_DEFAULT)
# Presionando 'enter' se activa el botón.
self.button.grab_default()
self.button.show()
# Mostramos la ventana
self.window.show()
def isNumeric(s):
"Retorna True si el dato ingresado es numérico."
try:
int(s)
return True
except:
return False
def main():
'''
Función Inicial
Realiza la validación de la entrada
'''
if len(sys.argv) > 1 and isNumeric(sys.argv[1]):
Cronometro()
gtk.main()
return 0
else:
print "Use: %s <minutos>" % sys.argv[0]
print "\nPara un cronómetro de 5 minutos:"
print "\t%s 5" % sys.argv[0]
return 1
if __name__ == "__main__":
main()