我在gnome面板中创建applet。所有代码都很好。但面板中的信息是静态的。但需要及时刷新此信息。 1 secon或5秒...
这是python代码的一部分:
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import sys
import gobject
import gtk
import pygtk
import gnomeapplet
import time
import urllib2
pygtk.require('2.0')
def applet_factory(applet, iid):
label = gtk.Label("Simple text")
applet.add(label)
applet.show_all()
print('Factory started')
if __name__ == '__main__': # testing for execution
print('Starting factory')
gnomeapplet.bonobo_factory('OAFIID:SampleApplet_Factory',
gnomeapplet.Applet.__gtype__,
'Sample Applet', '0.1',
applet_factory)
我需要在时间间隔刷新“简单文本”标签。那是怎么回事?
答案 0 :(得分:0)
大多数GUI库(wxPython,GTK,Qt,...)允许您定义计时器,以便每隔5秒调用设置标签文本的函数。 请参阅此SO问题中的已接受答案:Run a function every X minutes - Python
答案 1 :(得分:0)
怎么样......:
def applet_factory(applet, iid):
label = gtk.Label("Simple text")
applet.add(label)
applet.show_all()
return label
thelabel = applet_factory(applet, iid)
def redrawlabel(*args):
thelabel.queue_draw()
# process all events
while gtk.events_pending():
gtk.main_iteration(False)
return True
# call redrawlabel every 5 minutes
gtk.timeout_add(5*60*1000, redrawlabel)
如果您还需要将文字设置为不同的文字,thelabel.set_text('something else')
也会这样做。