Changeset 740
- Timestamp:
- 04/24/06 21:14:21 (2 years ago)
- Files:
-
- mochikit/trunk/doc/html/MochiKit/Signal.html (modified) (1 diff)
- mochikit/trunk/doc/rst/MochiKit/Signal.rst (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
mochikit/trunk/doc/html/MochiKit/Signal.html
r737 r740 71 71 <h1><a id="description" name="description">Description</a></h1> 72 72 <p>Event handling was never so easy!</p> 73 <p>This module takes care of all the hard work ---figuring out which event model74 to use, trying to retrieve the event object, and handling your own internal 75 events, as well as cleanup when the page is unloaded to handle IE's nasty 76 memory leakage.</p>73 <p>This module takes care of all the hard work—figuring out which event 74 model to use, trying to retrieve the event object, and handling your own 75 internal events, as well as cleanup when the page is unloaded to handle IE's 76 nasty memory leakage.</p> 77 77 <p>This event system is largely based on Qt's signal/slot system. You should read 78 78 more on how that is handled and also how it is used in model/view programming mochikit/trunk/doc/rst/MochiKit/Signal.rst
r737 r740 1 1 .. title:: MochiKit.Signal - Simple universal event handling 2 .. |---| unicode:: U+2014 .. em dash, trimming surrounding whitespace 3 :trim: 2 4 3 5 Name … … 64 66 Event handling was never so easy! 65 67 66 This module takes care of all the hard work ---figuring out which event model67 to use, trying to retrieve the event object, and handling your own internal 68 events, as well as cleanup when the page is unloaded to handle IE's nasty 69 memory leakage.68 This module takes care of all the hard work |---| figuring out which event 69 model to use, trying to retrieve the event object, and handling your own 70 internal events, as well as cleanup when the page is unloaded to handle IE's 71 nasty memory leakage. 70 72 71 73 This event system is largely based on Qt's signal/slot system. You should read
