Gtkmm:如何捕获 Gtk::Table 的右键单击信号?
我正在使用 GTKMM 制作一个应用程序,我想知道如何从 Gtk::Table 捕获右键单击信号?
如果鼠标位于 Gtk::Table 上方,如何捕获?
I'm making an app using GTKMM and I want to know how to catch the right click signal from a Gtk::Table ?
And also how to catch if the Mouse is over a Gtk::Table ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所有 GTK+ 小部件都有 button-press-event 和 焦点事件 事件。您可以将后者与其补充结合使用 (focus-out-event)来跟踪鼠标是否在小部件内。
All GTK+ widgets have the button-press-event and focus-in-event events. You can use the latter, in combination with its complement (focus-out-event) to track if the mouse is inside the widget.
好吧,我找到了解决方案。我能够通过覆盖按钮按下事件来捕获右键单击:
Ok I figured out the solution. I was able to capute the right click by overiding the button press event :