如何连接“秀”和“隐藏”用 PyGTK 发出信号?
我希望在显示或隐藏某些小部件(菜单
)时调用回调。这样做:
menu = gtk.Menu()
menu.connect("show", self.menu_show, menu)
menu.connect("hide", self.menu_hide, menu)
回调函数永远不会被调用。 show
和 hide
信号是我正在寻找的信号吗?他们很特别吗?我是否缺少某些东西才能使其正常工作?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为只有在调用对象上的相应方法时才会发出这些信号。如果您想在(重新)绘制小部件时进行连接,请获取公开事件信号。但你为什么还要这么做呢?菜单是为用户提供操作选择,而不是在显示/隐藏时运行某些设置/拆卸代码。
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.