andlabs-ui/todo.md

3.8 KiB

MAC OS X:

  • NSComboBox scans the entered text to see if it matches one of the items and returns the index of that item if it does; find out how to suppress this so that it returns -1 unless the item was chosen from the list (like the other platforms)
  • 10.6 also spits a bunch of NSNoAutoreleasePool() debug log messages even though I thoguht I had everything in an NSAutoreleasePool...
  • key up with the Command key held and our new modifiers code doesn't seem to happen?
  • make sure Areas get keyboard focus when clicking outside the actual Area space on Mac OS X

WINDOWS:

UNIX:

  • double-check to make sure MouseEvent.Held[] is sorted on Unix after we figure out how to detect buttons above button 5
  • david wendt is telling me he's getting frequent crashes on his end with the GTK+ amd64 build... TODO re-evaluate; I think I fixed them all ages ago now
  • when resizing a GTK+ window smaller than a certain size, the controls inside will start clipping in bizarre ways (the horizontal scrollbar in Area will disappear smoothly; etc.)
  • resizing seems to be completely and totally broken in the Wayland backend
    • TODO find out if this is a problem on the GTK+/Wayland side (no initial window-configure event?)
  • [12:55] pietro10: I meant to mention: 1073): Gtk-WARNING **: Theme parsing error: gtk.css:72:20: Not using units is deprecated. Assuming 'px'. twice.
  • figure out why Page Up/Page Down does tab stops

ALL PLATFORMS:

  • make sure MouseEvent's documentation has dragging described correctly (both Windows and GTK+ do)
  • make sure the preferred size of a Listbox is the minimum size needed to display everything on all platforms (capped at the screen height, of course?)
  • make sure the image drawn on an Area looks correct on all platforms (is not cropped incorrectly or blurred)
  • make all widths and heights parameters in constructors in the same place (or drop the ones in Window entirely?)
  • Message boxes that belong to agiven parent are still application-modal on all platforms except Mac OS X because the whole system waits... we'll need to use a channel for this, I guess :S