gui/collects/mred/private/wx/gtk
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 gtk: force display of images in button labels 2011-02-02 06:05:03 -07:00
canvas.rkt gtk: fix border (when requested) for canvas% with scrollbars 2011-09-01 07:14:05 -06:00
check-box.rkt clean up 2010-11-05 15:54:49 -06:00
choice.rkt clean up 2010-11-05 15:54:49 -06:00
client-window.rkt A long overdue scan to eliminate files without terminating newlines. 2011-06-28 02:01:41 -04:00
clipboard.rkt gtk: fix self X-selection handling 2011-05-24 13:22:01 -06:00
colordialog.rkt A long overdue scan to eliminate files without terminating newlines. 2011-06-28 02:01:41 -04:00
combo.rkt clean up 2010-11-05 15:54:49 -06:00
const.rkt gtk: fix float frames to not appear in WM's window list 2011-01-27 12:25:53 -07:00
cursor.rkt clean up 2010-11-05 15:54:49 -06:00
dc.rkt implement 'border style for `panel%' 2011-08-13 07:00:51 -06:00
dialog.rkt clean up 2010-11-05 15:54:49 -06:00
filedialog.rkt Split the glob patterns on ";", and add them all to the gtk dialog. 2011-06-02 09:33:53 -04:00
frame.rkt racket/gui: fix excessive on-size' and on-move' callbacks 2011-09-10 14:37:13 -06:00
gauge.rkt clean up 2010-11-05 15:54:49 -06:00
gcwin.rkt clean up 2010-11-05 15:54:49 -06:00
gl-context.rkt clean up 2010-11-05 15:54:49 -06:00
group-panel.rkt racket/gui: scrollbar support panels 2011-02-24 13:23:51 -07:00
init.rkt clean up 2010-11-05 15:54:49 -06:00
item.rkt clean up 2010-11-05 15:54:49 -06:00
keycode.rkt gtk: map left-tab key to #\tab 2011-02-02 06:46:03 -07:00
keymap.rkt clean up 2010-11-05 15:54:49 -06:00
list-box.rkt cocoa, gtk: enable auto list-box% horizontal scrollbars 2011-09-10 11:14:52 -06:00
menu-bar.rkt git: fix "&" and "_" handling in labels 2011-07-06 09:54:57 -06:00
menu-item.rkt clean up 2010-11-05 15:54:49 -06:00
menu.rkt gtk: fix menu-item shortcut updating 2011-09-01 07:14:06 -06:00
message.rkt fix keyboard navigation (all platforms) 2011-09-30 13:44:24 -06:00
panel.rkt fix keyboard navigation (all platforms) 2011-09-30 13:44:24 -06:00
pixbuf.rkt clean up 2010-11-05 15:54:49 -06:00
platform.rkt cocoa: make grow-box-spacer zero-width for 10.7 2011-10-04 12:59:18 -06:00
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 add -J/--wm-class argument to set the WM_CLASS class on Unix 2011-09-26 18:07:18 -06:00
radio-box.rkt fix keyboard navigation (all platforms) 2011-09-30 13:44:24 -06:00
README.txt finish pinning down gtk allocation 2010-11-05 15:54:15 -06:00
slider.rkt gtk: fix slider value display 2011-03-11 02:50:06 -06:00
stddialog.rkt clean up 2010-11-05 15:54:49 -06:00
style.rkt clean up 2010-11-05 15:54:49 -06:00
tab-panel.rkt fix keyboard navigation (all platforms) 2011-09-30 13:44:24 -06:00
types.rkt gtk: enable input-method (e.g., Chinese) support 2011-01-17 18:28:31 -07:00
unique.rkt clean up 2010-11-05 15:54:49 -06:00
utils.rkt git: fix "&" and "_" handling in labels 2011-07-06 09:54:57 -06:00
w32.rkt fix gtk win32 poll 2010-11-05 15:54:18 -06:00
widget.rkt clean up 2010-11-05 15:54:49 -06:00
win32.rkt gtk win32 canvas back-end 2010-11-05 15:54:26 -06:00
window.rkt racket/gui: fix excessive on-size' and on-move' callbacks 2011-09-10 14:37:13 -06:00
x11.rkt clean up 2010-11-05 15:54:49 -06:00

Allocation rules:

 * Use `as-gtk-allocation' when creating a Gtk widget that is the main
   container for a given window<%> object. When the resulting
   reference becomes unreachable, the widget will be released with
   gtk_widget_destroy() through a finalizer.

 * Use `atomically' to create and attach a sub-widget within the main
   widget.  Don't use gtk_widget_destroy(); the containing widget will
   destroy the enclosing widget.

 * For temporary objects, use `atomically' to wrap both the allocation
   and release.

Every call to a function whose name contains "new" needs to be in one
of those cases.