我的基于 Tkinter 的程序需要定期执行一些“繁重”的维护功能。由于它是一个连续运行的程序,我想在给定的空闲时间后才启动这些功能。
你如何在 Tkinter 中做到这一点?我在http://etutorials.org/Programming/Python+tutorial/Part+III+Python+Library+and+Extension+Modules/Chapter+16.+Tkinter+GUIs/16.9+Tkinter+Events/中找到了关于 after_idle 的信息,但是只有在事件循环空闲时才会调用它。我需要它来运行我的功能,比如说,在 10 分钟的空闲时间之后。
~~~
Mr.Steak 给出了我需要的答案——我只是稍微修改了一下,以便能够使用idletime变量以不同的时间间隔执行不同的任务:
import time
from Tkinter import *
root = Tk()
def resetidle(*ignore):
global idletime
for k in idletime: k['tlast']=None
def tick(*ignore):
global idletime
t=time.time() # the time in seconds since the epoch as a floating point number
for k in idletime:
if not k['tlast']:
k['tlast'] = t
else:
if t-k['tlast']>k['tmax']:
k['proc']()
k['tlast'] = None
root.after(5000, tick) # reset the checks every 5''
idletime=[{'tlast':None,'tmax':60,'proc':test1}, # every 1'
{'tlast':None,'tmax':3600,'proc':test2}] # every 1h
root.after(5000, tick)
root.bind('<Key>', reset)
root.bind('<Button-1>', reset)
root.mainloop()