2014-06-25 17:28:09 -05:00
ALL:
2014-06-26 09:06:58 -05:00
- 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
2014-06-26 02:56:44 -05:00
- won't cause any issues, just an inconvenience that should be addressed
2014-06-26 19:20:00 -05:00
- make sure tab stop behavior for Areas makes sense, or provide a handler function
2014-06-28 15:37:55 -05:00
- the following seems weird and will not allow clean removal of the last window; think of something better?
```
case ui.Closing:
*(d.(*bool)) = true
ui.Stop < - struct { } { }
```
2014-06-28 20:42:54 -05:00
- implement the concept of closing a window (which renders it unavilable for future use) and make it part of the Closing documentation
2014-06-29 14:46:06 -05:00
- make sure message boxes can be closed in arbitrary order meaningfully
2014-06-29 22:21:16 -05:00
- windows: the first message box closing will destroy the window properly and reenable the parent, but the actual call to MessageBox() won't return until the second dialog does
- docs don't say anything about threads but implies you can't call MessageBox() from a different thread
- GTK+: ???
- OS X: ???
2014-07-01 22:03:19 -05:00
- describe the thread safety of Window (needs to clarify construct, create, open, close, show, hide first)
2014-06-25 17:28:09 -05:00
2014-06-06 13:42:01 -05:00
MAC OS X:
2014-03-02 17:38:45 -06:00
- 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)
2014-05-18 23:11:50 -05:00
- asked: http://stackoverflow.com/questions/23046414/cocoa-how-do-i-get-nscombobox-indexofselecteditem-to-return-1-if-the-user-m
2014-06-06 17:02:08 -05:00
- make sure Areas get keyboard focus when clicking outside the actual Area space on Mac OS X
2014-06-07 21:58:12 -05:00
- http://stackoverflow.com/questions/24102367/how-do-i-make-it-so-clicking-outside-the-actual-nsview-in-a-nsscrollview-but-wit
2014-06-09 20:55:33 -05:00
- on initially starting the Area test, layout is totally wrong
2014-06-25 17:33:08 -05:00
- probably use fittingSize instead of sizeToFit
2014-07-02 18:56:10 -05:00
- use cascadeTopLeftFromPoint: for NSWindow or a similar routine
2014-06-06 13:42:01 -05:00
WINDOWS:
- windows: windows key handling is just wrong; figure out how to avoid (especially since Windows intercepts that key by default)
2014-06-12 16:59:46 -05:00
- control sizing is a MAJOR pain
- http://stackoverflow.com/questions/24130548/is-there-a-proper-way-to-get-the-preferred-size-of-windows-controls-there-are-s
2014-06-06 13:42:01 -05:00
- redrawing controls after a window resize on Windows does not work properly
2014-06-25 22:44:22 -05:00
- 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)
2014-06-06 13:42:01 -05:00
UNIX:
2014-06-12 16:59:46 -05:00
- figure out how to detect the alt key and mouse buttons above 5 properly for modifiers/Held[]
- http://stackoverflow.com/questions/24053012/gdk-is-there-a-way-i-can-get-if-an-arbitrary-keyval-or-mouse-button-is-down-dur
2014-06-06 13:42:01 -05:00
- double-check to make sure MouseEvent.Held[] is sorted on Unix after we figure out how to detect buttons above button 5
2014-06-09 18:57:01 -05:00
- 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
2014-06-06 13:42:01 -05:00
- [12:55] < myklgo > pietro10: I meant to mention: 1073): Gtk-WARNING ** : Theme parsing error: gtk.css:72:20: Not using units is deprecated. Assuming 'px'. twice.
2014-06-07 11:29:38 -05:00
- figure out why Page Up/Page Down does tab stops
2014-06-12 10:48:28 -05:00
ALL PLATFORMS:
- windows code presently wraps entire function bodies in uitask; make sure the other platforms do too