racket/collects/mred/private/wx/cocoa
2012-12-21 19:22:59 -06:00
..
agl.rkt Lots of bad TAB eliminations. 2012-11-07 11:22:20 -05:00
button.rkt
canvas.rkt
cg.rkt
check-box.rkt
choice.rkt racket/gui: add delete' to choice%' and `list-control<%>' 2012-11-04 08:25:43 -07:00
clipboard.rkt
colordialog.rkt
const.rkt
cursor.rkt
dc.rkt
dialog.rkt
filedialog.rkt
finfo.rkt
font.rkt
frame.rkt add display-changed method 2012-12-21 19:22:59 -06:00
gauge.rkt
gc.rkt
group-panel.rkt
image.rkt
init.rkt
item.rkt
keycode.rkt
list-box.rkt
menu-bar.rkt
menu-item.rkt
menu.rkt
message.rkt
panel.rkt
platform.rkt racket/gui: add `get-current-mouse-state' 2012-11-07 14:37:39 -07:00
pool.rkt
printer-dc.rkt
procs.rkt racket/gui: add `get-current-mouse-state' 2012-11-07 14:37:39 -07:00
queue.rkt add display-changed method 2012-12-21 19:22:59 -06:00
radio-box.rkt
README.txt Typo fixes 2012-11-27 07:55:29 -07:00
slider.rkt
sound.rkt
tab-panel.rkt
types.rkt add ffi/unsafe/nsalloc' and ffi/unsafe/nsstring' 2012-08-24 15:48:58 -06:00
utils.rkt add ffi/unsafe/nsalloc' and ffi/unsafe/nsstring' 2012-08-24 15:48:58 -06:00
window.rkt racket/gui: fix problems with control labels and client/global positions 2012-11-04 08:47:50 -07: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 that might be autoflushed,
   be sure that you're in atomic mode.