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 ?