触发 Gtk+悬停时的菜单栏
我在 PyGtk+ 中编写了一个 Gnome 窗口切换器小程序,使用菜单项来表示桌面上运行的不同应用程序。我想做的一件事是当我将鼠标悬停在菜单栏上时激活光标下的菜单项。我可以连接到菜单栏上的“输入通知事件”,但我不知道触发它时会做什么。
这就是我的问题,当我将鼠标悬停在其父项上时,如何使菜单栏的子菜单打开?
I've writing a Gnome window-switcher applet in PyGtk+ using menu items to represent the different applications running on the desktop. One thing I'd like to do is to activate the menu item under the cursor when I hover over the menubar. I can connect to the 'enter-notify-event' on the menu bar, but I don't know what to when it is triggered.
So that's my question, how can I make the submenus of the menu bar open when I hover over their parent items?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以解决问题:
它将创建一个新的事件对象,使用
enter-notify-event
中的enter_event
设置它,然后在您的上发出它菜单
。您可以在此处阅读有关活动的更多信息:
http://www.pygtk.org/docs/pygtk/class-gdkevent。 html
This should do the trick:
It will create a new event object, set it up using the
enter_event
from yourenter-notify-event
and then emit it on yourmenu
.You can read more on events here:
http://www.pygtk.org/docs/pygtk/class-gdkevent.html
可以在进入的位置模拟点击事件。
You can emulate the click event in the location of entering.