racket/collects/mred/private/wx/cocoa
Matthew Flatt 4535f5d8cc fix keyboard navigation (all platforms)
Also, fix `set-selection' in `list-box%' to not invoke the
tab panel's callback function (cocoa & gtk).
2011-09-30 13:44:24 -06:00
..
agl.rkt
bitmap.rkt
button.rkt
canvas.rkt implement 'border style for `panel%' 2011-08-13 07:00:51 -06:00
cg.rkt
check-box.rkt
choice.rkt
clipboard.rkt
colordialog.rkt
const.rkt
cursor.rkt
dc.rkt
dialog.rkt
filedialog.rkt cocoa: fix `get-file' when any extension is allowed 2011-06-03 01:38:40 -04:00
finfo.rkt
font.rkt A long overdue scan to eliminate files without terminating newlines. 2011-06-28 02:01:41 -04:00
frame.rkt cocoa: fix menu when two layers of dialogs are dismissed 2011-09-03 10:35:55 -06:00
gauge.rkt
gc.rkt
group-panel.rkt
image.rkt cocoa: fix image paste 2011-07-19 08:12:39 -06:00
init.rkt
item.rkt
keycode.rkt
list-box.rkt cocoa, gtk: enable auto list-box% horizontal scrollbars 2011-09-10 11:14:52 -06:00
menu-bar.rkt cocoa: fix application about handler 2011-09-03 10:35:55 -06:00
menu-item.rkt cocoa: fix "&" handling in menu-item labels 2011-07-06 09:54:41 -06:00
menu.rkt
message.rkt
panel.rkt implement 'border style for `panel%' 2011-08-13 07:00:51 -06:00
platform.rkt add get-display-count' and #:screen argument to get-display-size' 2011-07-18 20:15:15 -06:00
pool.rkt
printer-dc.rkt
procs.rkt get-diplay-size' and get-display-left-top-inset' use #f for failure 2011-09-09 17:03:17 -06:00
queue.rkt better fix for TransformProcessType issue 2011-09-10 10:53:42 -06:00
radio-box.rkt fix keyboard navigation (all platforms) 2011-09-30 13:44:24 -06:00
README.txt
slider.rkt
sound.rkt
tab-panel.rkt fix keyboard navigation (all platforms) 2011-09-30 13:44:24 -06:00
types.rkt
utils.rkt
window.rkt fix keyboard navigation (all platforms) 2011-09-30 13:44:24 -06:00

Allocation rules:

 * Use `as-objc-allocation' when creating a Cocoa object. When the
   resulting reference becomes unreachable, the Cocoa object will be
   released.

 * Use `with-autorelease' in atomic mode around calls that autorelease
   and where the release should take effect immediate. Do not create
   an autorelease pool except in atomic mode.

 * Other autoreleased objects may end up in the root pool installed by
   "pool.rkt". The root pool is periodically destroyed and replaced;
   call `queue-autorelease-flush' if you need to encurage replacement
   of the pool. If you need to use an object htat might be autoflushed,
   be sure that you're in atomic mode.