:right-sidebar: True Signal.BoundSignal =================================================================== .. currentmodule:: gi.repository.GObject .. class:: Signal.BoundSignal(signal, gobj) :no-contents-entry: Temporary binding object which can be used for connecting signals without specifying the signal name string to connect. Methods ------- .. rst-class:: interim-class .. class:: Signal.BoundSignal :no-index: .. method:: connect(callback, *args, **kargs) Same as GObject.Object.connect except there is no need to specify the signal name. :param callback: :param args: :param kargs: .. method:: connect_detailed(callback, detail, *args, **kargs) Same as GObject.Object.connect except there is no need to specify the signal name. In addition concats "::" to the signal name when connecting; for use with notifications like "notify" when a property changes. :param callback: :param detail: :param args: :param kargs: .. method:: disconnect(handler_id) Same as GObject.Object.disconnect. :param handler_id: .. method:: emit(*args, **kargs) Same as GObject.Object.emit except there is no need to specify the signal name. :param args: :param kargs: