Gtkmm:如何捕获 Gtk::Table 的右键单击信号?

发布于 2024-08-21 12:24:54 字数 91 浏览 3 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

找个人就嫁了吧 2024-08-28 12:24:54

所有 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.

女皇必胜 2024-08-28 12:24:54

好吧,我找到了解决方案。我能够通过覆盖按钮按下事件来捕获右键单击:

virtual bool on_button_press_event(GdkEventButton* event);

Ok I figured out the solution. I was able to capute the right click by overiding the button press event :

virtual bool on_button_press_event(GdkEventButton* event);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文