gui/gui-lib/mred/private/wx/gtk
Matthew Flatt 84a5dfb367 fix HiDPI detection
Work (in unscaled mode) on systems where the relevant
setting is not available.
2015-08-01 19:08:50 -06:00
..
button.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
canvas.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
check-box.rkt
choice.rkt
client-window.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
clipboard.rkt
colordialog.rkt
combo.rkt
const.rkt
cursor.rkt
dc.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
dialog.rkt
filedialog.rkt
frame.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
gauge.rkt
gcwin.rkt
gl-context.rkt Check for X errors as well as NULL contexts to work around broken graphics drivers 2015-03-16 10:53:10 -04:00
group-panel.rkt
gsettings.rkt fix HiDPI detection 2015-08-01 19:08:50 -06:00
init.rkt
item.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
keycode.rkt
keymap.rkt
list-box.rkt
menu-bar.rkt
menu-item.rkt
menu.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
message.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
panel.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
pixbuf.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
platform.rkt
printer-dc.rkt
procs.rkt
queue.rkt
radio-box.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
README.txt
resolution.rkt fix HiDPI detection 2015-08-01 19:08:50 -06:00
slider.rkt
stddialog.rkt
style.rkt
tab-panel.rkt
types.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -06:00
unique.rkt
utils.rkt fix HiDPI detection 2015-08-01 19:08:50 -06:00
w32.rkt
widget.rkt
win32.rkt
window.rkt HiDPI support on Unix (Gtk2) 2015-08-01 18:06:12 -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.