Python中刷新标签

发布于 2024-09-07 21:36:32 字数 761 浏览 3 评论 0原文

我在 gnome 面板中创建小程序。所有代码都很好。但面板中的信息是静态的。但需要及时刷新此信息。 1秒或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)

我需要在时间间隔内刷新“简单文本”标签。怎么做到的?

I creating applet in gnome panel. All code is good. But info in panel is static. But need refresh this info in time. 1 secon or 5 second...

Here is part of python code:

#!/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)

I need refresh "simple text" label in time interval. How did that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

短暂陪伴 2024-09-14 21:36:32

怎么样...:

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') 即可实现。

What about...:

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)

If you also need to set the text to something different, thelabel.set_text('something else') will do that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文