NAME Object.Slot DESCRIPTION This module adds functions for managing slots and signals. Object.Slot.connect(SLOTOBJECT, SLOTNAME, SIGNALOBJECT, SIGNALNAME) Connects SIGNALNAME method from SIGNALOBJECT to SLOTNAME method on SLOTOBJECT object. Any further invocation of SLOTNAME will automaticaly also execute SIGNALOBJECT method with arguments passed to primary method. Object.Slot.disconnect(SLOTOBJECT, SLOTNAME, SIGNALOBJECT, SIGNALNAME) Disonnects SIGNALNAME method from SIGNALOBJECT object from SLOTNAME method on SLOTOBJECT object. This break links between SLOTNAME method and SIGNALNAME created by "Object.Slot.connect". Next invocations of SLOTNAME will not be dispatched to SIGNALOBJECT. AUTHOR Pawel Chmielowski