如何连接“秀”和“隐藏”用 PyGTK 发出信号?

发布于 2024-11-05 01:10:30 字数 276 浏览 0 评论 0原文

我希望在显示或隐藏某些小部件(菜单)时调用回调。这样做:

menu = gtk.Menu()
menu.connect("show", self.menu_show, menu)
menu.connect("hide", self.menu_hide, menu)

回调函数永远不会被调用。 showhide 信号是我正在寻找的信号吗?他们很特别吗?我是否缺少某些东西才能使其正常工作?

I would like to have a callback called when some widget (a Menu) is shown or hidden. Doing this way :

menu = gtk.Menu()
menu.connect("show", self.menu_show, menu)
menu.connect("hide", self.menu_hide, menu)

Callback functions are never called. Are show and hide signals the ones I am looking for ? Are they special ? Is there something I am missing to have this working ?

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

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

发布评论

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

评论(1

许一世地老天荒 2024-11-12 01:10:30

我认为只有在调用对象上的相应方法时才会发出这些信号。如果您想在(重新)绘制小部件时进行连接,请获取公开事件信号。但你为什么还要这么做呢?菜单是为用户提供操作选择,而不是在显示/隐藏时运行某些设置/拆卸代码。

I think those signals are emitted only when the respective methods on an object are called. If you want to connect to when a widget is (re-) drawn, take the expose-event signal. But why do you want to anyway? A menu is there to provide to the user choices for actions, not to run some setup/teardown code when it is shown/hidden.

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