gpt4 book ai didi

python - 如何定期更新Gtk3 Label文本?

转载 作者:行者123 更新时间:2023-12-01 08:54:07 28 4
gpt4 key购买 nike

我正在 Ubuntu 18.04 上编写应用程序指示器。开始是最困难的部分。文档没有多大帮助。我发现this blog我有一个 POC,它只在我的应用程序栏上显示固定文本,如下所示 -
enter image description here
我无法弄清楚如何定期或动态更新此文本以显示我需要的实际信息,例如:CPU 频率、温度 等。

我看过以下地方,但我认为我遗漏了一些东西。
https://lazka.github.io/pgi-docs/Gtk-3.0/classes/Label.html
https://askubuntu.com/questions/108035/writing-indicators-with-python-gir-and-gtk3
https://lazka.github.io/pgi-docs/AppIndicator3-0.1/classes/Indicator.html#AppIndicator3.Indicator.set_label

我的工作代码是 -

import os
import signal
from gi.repository import Gtk as gtk
from gi.repository import AppIndicator3 as appindicator

APPINDICATOR_ID = 'myappindicator'

def main():
indicator = appindicator.Indicator.new(APPINDICATOR_ID, gtk.STOCK_INFO, appindicator.IndicatorCategory.SYSTEM_SERVICES)
indicator.set_status(appindicator.IndicatorStatus.ACTIVE)
indicator.set_menu(build_menu())
indicator.set_label('world', '8.8')
gtk.main()

def build_label():
label = gtk.Label()
return label

def build_menu():
menu = gtk.Menu()
item_quit = gtk.MenuItem('Quit')
item_quit.connect('activate', quit)
menu.append(item_quit)
menu.show_all()
return menu

def quit(source):
gtk.main_quit()

if __name__ == "__main__":
signal.signal(signal.SIGINT, signal.SIG_DFL)
main()

编辑:
引用this类似的SO帖子,以及this apparently working例如,我尝试添加 timeout_add_secondstimeout_add 但是文本根本没有改变,它只显示第一个调用。我也在那里插入了一条打印语句,令人惊讶的是,它也仅打印一次。不知道为什么会发生这种情况 -
新代码尝试-

import random
from gi.repository import Gtk, GLib
from gi.repository import AppIndicator3 as appindicator

APPINDICATOR_ID = 'myappindicator'

def cb_exit(w, data):
Gtk.main_quit()

def change_label(ind_app):
text = 'Hello World, what a great day'.split()
t = random.choice(text)
print(t)
ind_app.set_label(t , '')

ind_app = appindicator.Indicator.new(APPINDICATOR_ID, Gtk.STOCK_INFO, appindicator.IndicatorCategory.SYSTEM_SERVICES)
ind_app.set_status(appindicator.IndicatorStatus.ACTIVE)

# create a menu
menu = Gtk.Menu()
menu_items = Gtk.MenuItem("Exit")
menu.append(menu_items)
menu_items.connect("activate", cb_exit, '')
menu_items.show_all()
ind_app.set_menu(menu)
GLib.timeout_add(1000, change_label, ind_app)
Gtk.main()

最佳答案

这是我自己想出来的。我错误地使用了 timeout_add 函数。被调用的函数必须返回任何非 false 的值,定时器才能继续。就我而言,它没有返回任何内容,因此计时器正在 self 销毁。 docs here还有这个SO post帮助我解决了这个问题。所以代码最终看起来像这样 -

import random
from gi.repository import Gtk, GLib
from gi.repository import AppIndicator3 as appindicator

APPINDICATOR_ID = 'myappindicator'

def change_label(ind_app):
text = 'Hello world, what a beautiful day'.split()
t = random.choice(text)
print(t)
ind_app.set_label(t , '')
return True

def quit(source):
Gtk.main_quit()

ind_app = appindicator.Indicator.new(APPINDICATOR_ID, Gtk.STOCK_INFO, appindicator.IndicatorCategory.SYSTEM_SERVICES)
ind_app.set_status(appindicator.IndicatorStatus.ACTIVE)

# create a menu
menu = Gtk.Menu()
menu_items = Gtk.MenuItem("Exit")
menu.append(menu_items)
menu_items.connect("activate", quit)
menu_items.show_all()
ind_app.set_menu(menu)
GLib.timeout_add(1000, change_label, ind_app)
Gtk.main()

关于python - 如何定期更新Gtk3 Label文本?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52887891/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com