racket/collects/mred/private/wx/gtk
2011-12-08 15:05:41 -07:00
..
button.rkt gtk: force display of images in button labels 2011-02-02 06:05:03 -07:00
canvas.rkt gtk: no freeze/thaw before/after unmap 2011-10-17 15:53:07 -06:00
check-box.rkt
choice.rkt
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
const.rkt gtk: fix float frames to not appear in WM's window list 2011-01-27 12:25:53 -07:00
cursor.rkt
dc.rkt implement 'border style for `panel%' 2011-08-13 07:00:51 -06:00
dialog.rkt
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 gtk: fix problems with on-focus' and on-activate' 2011-10-18 06:35:50 -06:00
gauge.rkt
gcwin.rkt
gl-context.rkt
group-panel.rkt racket/gui: scrollbar support panels 2011-02-24 13:23:51 -07:00
init.rkt
item.rkt
keycode.rkt add 'shift, 'control, 'rshift, and 'rcontrol events 2011-12-08 15:05:41 -07:00
keymap.rkt
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
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
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
slider.rkt gtk: fix slider value display 2011-03-11 02:50:06 -06:00
stddialog.rkt
style.rkt
tab-panel.rkt gtk: fix problems with on-focus' and on-activate' 2011-10-18 06:35:50 -06:00
types.rkt gtk: fix problems with on-focus' and on-activate' 2011-10-18 06:35:50 -06:00
unique.rkt
utils.rkt git: fix "&" and "_" handling in labels 2011-07-06 09:54:57 -06:00
w32.rkt
widget.rkt
win32.rkt
window.rkt gtk: fix problems with on-focus' and on-activate' 2011-10-18 06:35:50 -06:00
x11.rkt

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.