分类: Python/Ruby
2010-03-02 14:15:14
在中,的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