gui/collects/mred/private/wx/cocoa
Matthew Flatt b4d34b0b32 generalize editor selection mechanism to support Windows style
original commit: ae05eddf1437b8ae465d9bdfe8a605f7db022765
2010-11-05 15:54:19 -06:00
..
button.rkt cocoa cursors 2010-11-05 15:54:16 -06:00
canvas.rkt cocoa tab-panel in no-border mode uses PSMTabBarControl 2010-11-05 15:54:17 -06:00
check-box.rkt dialog show & button width fixes 2010-11-05 15:54:08 -06:00
choice.rkt cocoa cursors 2010-11-05 15:54:16 -06:00
clipboard.rkt default buttons and Cocoa clipboard 2010-11-05 15:54:03 -06:00
const.rkt better dialog support (sheets for Cocoa, centering in gtk) 2010-11-05 15:54:09 -06:00
cursor.rkt repairs that make dragable panels work 2010-11-05 15:54:17 -06:00
dc.rkt use Cairo's Quartz back-end for canvas buffering under Mac OS X + makes text rending look much better - makes drawing to a bitmap% different than drawing onscreen 2010-11-05 15:54:16 -06:00
dialog.rkt concurrency repairs 2010-11-05 15:54:18 -06:00
frame.rkt cocoa cursors 2010-11-05 15:54:16 -06:00
gauge.rkt cocoa cursors 2010-11-05 15:54:16 -06:00
group-panel.rkt cocoa cursors 2010-11-05 15:54:16 -06:00
image.rkt more memory management 2010-11-05 15:54:15 -06:00
init.rkt gracket2 wx re-implementation start 2010-11-05 15:53:55 -06:00
item.rkt postscript-dc% interactive and landscape 2010-11-05 15:54:10 -06:00
keycode.rkt gracket2 wx re-implementation start 2010-11-05 15:53:55 -06:00
list-box.rkt cocoa cursors 2010-11-05 15:54:16 -06:00
menu-bar.rkt misc repairs 2010-11-05 15:54:15 -06:00
menu-item.rkt misc repairs 2010-11-05 15:54:15 -06:00
menu.rkt misc repairs 2010-11-05 15:54:15 -06:00
message.rkt cocoa cursors 2010-11-05 15:54:16 -06:00
panel.rkt repairs that make dragable panels work 2010-11-05 15:54:17 -06:00
platform.rkt generalize editor selection mechanism to support Windows style 2010-11-05 15:54:19 -06:00
pool.rkt more memory management 2010-11-05 15:54:15 -06:00
printer-dc.rkt gracket2 wx re-implementation start 2010-11-05 15:53:55 -06:00
procs.rkt generalize editor selection mechanism to support Windows style 2010-11-05 15:54:19 -06:00
queue.rkt generalize editor selection mechanism to support Windows style 2010-11-05 15:54:19 -06:00
radio-box.rkt cocoa cursors 2010-11-05 15:54:16 -06:00
README.txt finish pinning down gtk allocation 2010-11-05 15:54:15 -06:00
slider.rkt cocoa cursors 2010-11-05 15:54:16 -06:00
tab-panel.rkt cocoa tab-panel in no-border mode uses PSMTabBarControl 2010-11-05 15:54:17 -06:00
types.rkt clean up cocoa memory management and also fix vertical sliders and guages 2010-11-05 15:54:14 -06:00
utils.rkt [PATCH 123/326] bell 2010-11-05 15:54:17 -06:00
window.rkt special-option-key for cocoa 2010-11-05 15:54:19 -06:00

Allocation rules:

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

 * 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.