andlabs-ui/todo.md

2.8 KiB

ALL:

  • vertical alignment of labels still has some flaws
    • gtk+: currently requires labels to be filling for this to work: grids don't do this by default, for instance
      • won't cause any issues, just an inconvenience that should be addressed
  • make sure tab stop behavior for Areas makes sense, or provide a handler function

MAC OS X:

WINDOWS:

  • there seems to be a caching issue: with the test program and -dialog, click one of the dialog buttons, then quickly tap one of the buttons in the main window. The dialog will pop up twice, and after both are closed the program aborts with a send on closed channel
    • appears to be a bug in my dialog code
    • appears to have always been a bug in dialog code...
  • windows: windows key handling is just wrong; figure out how to avoid (especially since Windows intercepts that key by default)
  • control sizing is a MAJOR pain
  • redrawing controls after a window resize on Windows does not work properly
  • when adding IsDialogMessage() find out if that makes the area in the area bounds test automatically focused
  • vertical alignment of labels can be wrong (I think; need to check again - TODO)

UNIX:

  • figure out how to detect the alt key and mouse buttons above 5 properly for modifiers/Held[]
  • double-check to make sure MouseEvent.Held[] is sorted on Unix after we figure out how to detect buttons above button 5
  • sizing with client-side decorations (Wayland) don't work
    • several people suggested connecting to size-allocate of the GtkLayout, but then I can wind up in a situation where there's extra padding or border space in the direction I resized
  • [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:

  • windows code presently wraps entire function bodies in uitask; make sure the other platforms do too