我想通过指南编写自己的应用指标 http://unity.ubuntu.com/projects/appindicators/(在 Python 中)
我的问题 - 是否有可能在顶部面板上的图标指示器输入小部件(见下文)旁边添加?
(
window = gtk.Window(gtk.WINDOW_TOPLEVEL)
vbox = gtk.VBox(False, 0)
window.add(vbox)
vbox.show()
entry = gtk.Entry()
entry.set_max_length(50)
entry.set_text("hello")
vbox.pack_start(entry, True, True, 0)
entry.show()
window.show()
)
谢谢
答案1
AppIndicators 目前不支持这种复杂性。它们将来可能会支持复杂的小部件,但目前您只能使用简单的文本项目。