I\'ve created a python object, but I want to send signals on it. I made it inherit from gobject.GObject, but there doesn\'t seem to be any way to create a new signal on my obje
If you use kiwi available here you can just do:
from kiwi.utils import gsignal class MyObject(gobject.GObject): gsignal('signal-name')