|
| 1 | +import tkinter as tk |
| 2 | +from tkinter import messagebox |
| 3 | +from PIL import Image, ImageTk |
| 4 | +from playsound import playsound |
| 5 | +import time |
| 6 | + |
| 7 | +class Pomodoro: |
| 8 | + def __init__(self, root): |
| 9 | + self.root = root |
| 10 | + |
| 11 | + def work_break(self, timer): |
| 12 | + |
| 13 | + # common block to display minutes |
| 14 | + # and seconds on GUI |
| 15 | + minutes, seconds = divmod(timer, 60) |
| 16 | + self.min.set(f"{minutes:02d}") |
| 17 | + self.sec.set(f"{seconds:02d}") |
| 18 | + self.root.update() |
| 19 | + time.sleep(1) |
| 20 | + |
| 21 | + def work(self): |
| 22 | + timer = 25*60 |
| 23 | + while timer >= 0: |
| 24 | + pomo.work_break(timer) |
| 25 | + if timer == 0: |
| 26 | + |
| 27 | + # once work is done play |
| 28 | + # a sound and switch for break |
| 29 | + playsound("sound.ogg") |
| 30 | + messagebox.showinfo( |
| 31 | + "Good Job", "Take A Break, \ |
| 32 | + nClick Break Button") |
| 33 | + timer -= 1 |
| 34 | + |
| 35 | + def break_(self): |
| 36 | + timer = 5*60 |
| 37 | + while timer >= 0: |
| 38 | + pomo.work_break(timer) |
| 39 | + if timer == 0: |
| 40 | + |
| 41 | + # once break is done, |
| 42 | + # switch back to work |
| 43 | + playsound("sound.ogg") |
| 44 | + messagebox.showinfo( |
| 45 | + "Times Up", "Get Back To Work, \ |
| 46 | + nClick Work Button") |
| 47 | + timer -= 1 |
| 48 | + |
| 49 | + def main(self): |
| 50 | + |
| 51 | + # GUI window configuration |
| 52 | + self.root.geometry("450x455") |
| 53 | + self.root.resizable(False, False) |
| 54 | + self.root.title("Pomodoro Timer") |
| 55 | + |
| 56 | + # label |
| 57 | + self.min = tk.StringVar(self.root) |
| 58 | + self.min.set("25") |
| 59 | + self.sec = tk.StringVar(self.root) |
| 60 | + self.sec.set("00") |
| 61 | + |
| 62 | + self.min_label = tk.Label(self.root, |
| 63 | + textvariable=self.min, font=( |
| 64 | + "arial", 22, "bold"), bg="red", fg='black') |
| 65 | + self.min_label.pack() |
| 66 | + |
| 67 | + self.sec_label = tk.Label(self.root, |
| 68 | + textvariable=self.sec, font=( |
| 69 | + "arial", 22, "bold"), bg="black", fg='white') |
| 70 | + self.sec_label.pack() |
| 71 | + |
| 72 | + # add background image for GUI using Canvas widget |
| 73 | + canvas = tk.Canvas(self.root) |
| 74 | + canvas.pack(expand=True, fill="both") |
| 75 | + img = Image.open('pomodoro.jpg') |
| 76 | + bg = ImageTk.PhotoImage(img) |
| 77 | + canvas.create_image(90, 10, image=bg, anchor="nw") |
| 78 | + |
| 79 | + # create three buttons with countdown function command |
| 80 | + btn_work = tk.Button(self.root, text="Start", |
| 81 | + bd=5, command=self.work, |
| 82 | + bg="red", font=( |
| 83 | + "arial", 15, "bold")).place(x=140, y=380) |
| 84 | + btn_break = tk.Button(self.root, text="Break", |
| 85 | + bd=5, command=self.break_, |
| 86 | + bg="red", font=( |
| 87 | + "arial", 15, "bold")).place(x=240, y=380) |
| 88 | + |
| 89 | + self.root.mainloop() |
| 90 | + |
| 91 | + |
| 92 | +if __name__ == '__main__': |
| 93 | + pomo = Pomodoro(tk.Tk()) |
| 94 | + pomo.main() |
0 commit comments