托盘图标的文本叠加
我有一个使用 PyGTK 的 gtk.StatusIcon 的简单托盘图标:
import pygtk
pygtk.require('2.0')
import gtk
statusIcon = gtk.StatusIcon()
statusIcon.set_from_stock(gtk.STOCK_EDIT)
statusIcon.set_tooltip('Hello World')
statusIcon.set_visible(True)
gtk.main()
我怎样才能将文本标签(一两个字符;基本上是未读计数)添加到工具提示 - 而不为 set_from_file
创建单独的图像?
I have a simple tray icon using PyGTK's gtk.StatusIcon:
import pygtk
pygtk.require('2.0')
import gtk
statusIcon = gtk.StatusIcon()
statusIcon.set_from_stock(gtk.STOCK_EDIT)
statusIcon.set_tooltip('Hello World')
statusIcon.set_visible(True)
gtk.main()
How can I add a text label (one or two characters; basically, unread count) to the tooltip - without creating separate images for set_from_file
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在 GTK3 中使用 Gtk.OffscreenWindow 的稍微简单一些的示例:(
另请参阅 stackoverflow.com/a/26208202/1476175)
A somewhat simpler example using Gtk.OffscreenWindow in GTK3:
(See also stackoverflow.com/a/26208202/1476175)
Pango 想要 Widget 类来绘图,但 StatusIcon 不需要。
Pango wants Widget class for drawing but StatusIcon is not.