我应该使用什么 Gtk 信号:按键事件或按键释放事件来捕获 GtkEntry 中的返回键?

发布于 2024-11-26 20:21:14 字数 135 浏览 1 评论 0原文

我正在尝试捕获 GtkEntry 小部件中的 Enter/Return 键。我应该为 key-press-eventkey-release event 制作信号处理程序吗?

I am trying to catch the enter/return key in a GtkEntry widget. Should I make a signal hander for key-press-event or key-release event?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

伴随着你 2024-12-03 20:21:14

或者,您可以查看连接到“激活”信号,当用户按回车键或通过其他方法激活它时,该信号会被触发。

Alternatively you could look at connecting to the "activate" signal which gets fired when the user hits enter or activates it through some other method.

再浓的妆也掩不了殇 2024-12-03 20:21:14

这取决于您何时想像任一信号那样对事件采取行动。如果您处理按键事件并且用户按住该键,那么您将不断收到信号。如果您处理按键释放事件,那么当用户释放按键时您只会收到一个信号。

我认为最常见的是您会想要使用 key-release-event。

It depends when you want to act on the event as either signal will do. If you handle key-press-event and the user holds down the key, then you'll keep getting signals. If you handle key-release-event then you'll only get one signal when the user releases the key.

I think most commonly you'll want to use key-release-event.

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