gui/collects/mred/private/wx/cocoa
Matthew Flatt 60c5ad33e3 cocoa: make grow-box-spacer zero-width for 10.7
original commit: 3941a5d04f71a7d17f9ad341b30e2d6acde098c8
2011-10-04 12:59:18 -06:00
..
button.rkt allow a button% to have both a string and a bitmap for its label 2011-01-01 13:54:45 -07:00
canvas.rkt implement 'border style for `panel%' 2011-08-13 07:00:51 -06:00
cg.rkt
check-box.rkt
choice.rkt
clipboard.rkt fix support for a string result from get-data' of clipboard-client%' 2011-03-27 10:51:46 -06:00
colordialog.rkt
const.rkt
cursor.rkt
dc.rkt cocoa: erasing a non-transparent canvas uses white 2011-01-07 14:15:35 -07:00
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 Fixes more spelling errors. 2011-02-04 19:44:13 -07:00
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 finish implementing display of menu shortcuts 2011-01-22 10:15:14 -07:00
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 gtk, cocoa: fix auto-sizing of text `message%'s 2011-04-08 14:22:17 -06:00
panel.rkt implement 'border style for `panel%' 2011-08-13 07:00:51 -06:00
platform.rkt cocoa: make grow-box-spacer zero-width for 10.7 2011-10-04 12:59:18 -06:00
pool.rkt
printer-dc.rkt add `get-device-scale' to dc<%> 2011-03-15 07:37:42 -06:00
procs.rkt cocoa: make grow-box-spacer zero-width for 10.7 2011-10-04 12:59:18 -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 cocoa: flip vertical slider direction 2011-03-11 02:50:06 -06:00
sound.rkt code clarification 2011-03-15 06:46:36 -06:00
tab-panel.rkt fix keyboard navigation (all platforms) 2011-09-30 13:44:24 -06:00
types.rkt
utils.rkt cocoa: make grow-box-spacer zero-width for 10.7 2011-10-04 12:59:18 -06:00
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.