-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtimer.py
111 lines (90 loc) · 3.61 KB
/
timer.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
"""
Simple timer GUI application using tkinter.
Author: Jack Brokenshire
Date: 15/12/2019
"""
# Third-party imports
import tkinter as tk
import tkinter.messagebox
class Application(tk.Frame):
""""Simple timer application using tkinter."""
def __init__(self, master, *args, **kwargs):
tk.Frame.__init__(self, master, *args, **kwargs)
self.master = master
self.running = False
self.time = 0
self.hours = 0
self.mins = 0
self.secs = 0
self.build_interface()
def build_interface(self):
"""The interface function."""
self.time_entry = tk.Entry(self)
self.time_entry.grid(row=0, column=1)
self.clock = tk.Label(self, text="00:00:00", font=("Courier", 20), width=10)
self.clock.grid(row=1, column=1, stick="S")
self.time_label = tk.Label(self, text="hour min sec", font=("Courier", 10), width=15)
self.time_label.grid(row=2, column=1, sticky="N")
self.power_button = tk.Button(self, text="Start", command=lambda: self.start())
self.power_button.grid(row=3, column=0, sticky="NE")
self.reset_button = tk.Button(self, text="Reset", command=lambda: self.reset())
self.reset_button.grid(row=3, column=1, sticky="NW")
self.quit_button = tk.Button(self, text="Quit", command=lambda: self.quit())
self.quit_button.grid(row=3, column=3, sticky="NE")
self.master.bind("<Return>", lambda x: self.start())
self.time_entry.bind("<Key>", lambda v: self.update())
def calculate(self):
"""Calculates the time"""
self.hours = self.time // 3600
self.mins = (self.time // 60) % 60
self.secs = self.time % 60
return "{:02d}:{:02d}:{:02d}".format(self.hours, self.mins, self.secs)
def update(self):
"""Checks if valid time entered and updates the timer"""
self.time = int(self.time_entry.get())
try:
self.clock.configure(text=self.calculate())
except:
self.clock.configure(text="00:00:00")
def timer(self):
"""Calculates the time to be displayed"""
if self.running:
if self.time <= 0:
self.clock.configure(text="Time's up!")
else:
self.clock.configure(text=self.calculate())
self.time -= 1
self.after(1000, self.timer)
def start(self):
"""Begins the timer"""
try:
self.time = int(self.time_entry.get())
self.time_entry.delete(0, 'end')
except:
self.time = self.time
self.power_button.configure(text="Stop", command=lambda: self.stop())
self.master.bind("<Return>", lambda x: self.stop())
self.running = True
self.timer()
def stop(self):
"""Stops the timer"""
self.power_button.configure(text="Start", command=lambda: self.start())
self.master.bind("<Return>", lambda x: self.start())
self.running = False
def reset(self):
"""Resets the timer to 0."""
self.power_button.configure(text="Start", command=lambda: self.start())
self.master.bind("<Return>", lambda x: self.start())
self.running = False
self.time = 0
self.clock["text"] = "00:00:00"
def quit(self):
"""Ask user if they want to close program."""
if tk.messagebox.askokcancel("Quit", "Do you want to quit?"):
root.destroy()
if __name__ == "__main__":
"""Main loop which creates program."""
root = tk.Tk()
root.title("TIMER")
Application(root).pack(side="top", fill="both", expand=True)
root.mainloop()