用PyGtk实现定时器(timer)
时间:2010-03-02 来源:aluoyeshi
在PyGTK中,Python的Timer对象计时严重不准确,故应使用gobject.timeout_add来实现定时器,具体的使用方法如下:
# 增加一个计时器,1000ms后运行self.update_clock程序一次。计时器ID为self.timer_id:
self.timer_id = gobject.timeout_add(1000, self.update_clock)
# 取消上面的计时器:
gobject.source_remove(self.timer_id)
self.timer_id=None
相关阅读 更多 +