forked from gohil-jay/Macro-Python-Projects
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
91 lines (73 loc) · 2.43 KB
/
main.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
import tkinter
import threading
from tkinter import messagebox
import sys
tasks = []
timer = threading
real_timer = threading
ok_thread = True
def get_entry(event=""):
text = todo.get()
hour = int(time.get())
todo.delete(0, tkinter.END)
time.delete(0, tkinter.END)
todo.focus_set()
add_list(text, hour)
if 0 < hour < 999:
update_list()
def add_list(text, hour):
tasks.append([text, hour])
timer = threading.Timer(hour, time_passed, [text])
timer.start()
def update_list():
if todolist.size() > 0:
todolist.delete(0, "end")
for task in tasks:
todolist.insert("end", "[" + task[0] + "] Time left: " + str(task[1]) + " secondes")
def time_passed(task):
tkinter.messagebox.showinfo("Notification", "Time for : " + task)
def real_time():
if ok_thread:
real_timer = threading.Timer(1.0, real_time)
real_timer.start()
for task in tasks:
if task[1] == 0:
tasks.remove(task)
task[1] -= 1
update_list()
if __name__ == '__main__':
# application
app = tkinter.Tk()
app.geometry("480x680")
app.title("Todolist Remainder")
app.rowconfigure(0, weight=1)
# fenetre
frame = tkinter.Frame(app)
frame.pack()
# widgets
label = tkinter.Label(app, text="Enter work to do:",
wraplength = 200,
justify = tkinter.LEFT)
label_hour = tkinter.Label(app, text="Enter time (secondes)",
wraplength = 200,
justify = tkinter.LEFT)
todo = tkinter.Entry(app, width=30)
time = tkinter.Entry(app, width=15)
send = tkinter.Button(app, text='Add task', fg="#ffffff", bg='#6186AC', height=3, width=30, command=get_entry)
quit = tkinter.Button(app, text='Exit', fg="#ffffff", bg='#EB6464', height=3, width=30, command=app.destroy)
todolist = tkinter.Listbox(app)
if tasks != "":
real_time()
# binding
app.bind('<Return>', get_entry)
# widgets placement
label.place(x=0, y=10, width=200, height=25)
label_hour.place(x=235, y=10, width=200, height=25)
todo.place(x=62, y=30, width=200, height=25)
time.place(x=275, y=30, width=50, height=25)
send.place(x=62, y=60, width=50, height=25)
quit.place(x=302, y=60, width=50, height=25)
todolist.place(x=60, y = 100, width=300, height=300)
app.mainloop()
ok_thread = False
sys.exit("FINISHED")