我正在尝试使用appindicator和Gtk制作一个小应用程序。我的目标是显示一个服务器列表,其中包含指向其URL的链接。
以下是我的尝试:
from gi.repository import Gtk as gtk
from gi.repository import AppIndicator3 as appindicator
def main():
indicator = appindicator.Indicator.new(APPINDICATOR_ID, img, appindicator.IndicatorCategory.SYSTEM_SERVICES)
indicator.set_status(appindicator.IndicatorStatus.ACTIVE)
indicator.set_menu(build_menu())
gtk.main()
def build_menu():
menu = gtk.Menu()
value = "label"
item = gtk.MenuItem()
button = gtk.LinkButton("http://url/host/id", label=value)
button.show()
item.add(button)
item.show()
menu.append(item)
menu.show_all()
return menu
if __name__ == "__main__":
main()
这是有效的,我没有错误。但是,我启动应用程序,我只有菜单,有项目,但没有链接。
我见过很多关于gtk.Window的例子,但没有关于appindicator的菜单。
有没有办法在这个菜单中有链接?
由于
答案 0 :(得分:0)
我找到了一种方法。我不确定这是最好的方式,但它确实有用。
我没有创建一个LinkItem,而是为open url创建了一个函数:
def open_url(source):
webbrowser.open("http://url/host/id")
然后我用connect
:
item.connect("activate", open_url)
当我运行我的应用并点击我的项目时,它会按预期打开网址。以下是代码工作的一部分:
def build_menu():
menu = gtk.Menu()
value = "label"
item = gtk.MenuItem(value)
item.connect("activate", open_url)
menu.append(item)
menu.show_all()
return menu
正如我在很多网站上看到的那样,与普通的Gtk应用程序相比,appindicator的功能有限。