Custom signal from widget to widget
问题 try to send signal from one gtk.EventBox child to another. on init HeadMode (line 75) got error: TypeError : unknown signal name: message-send why? #!/usr/bin/env python # -*- coding: utf8 -*- import pygtk pygtk.require('2.0') import gtk import gobject def Destroy(widget): gtk.main_quit() class CustomEventBox(gtk.EventBox): def __init__(self): super(CustomEventBox, self).__init__() self.press_hid = self.connect("button_press_event", self.on_press) self.release_hid = self.connect("button