andlabs-ui/redo/future

89 lines
3.5 KiB
Plaintext
Raw Normal View History

Group
2014-08-08 19:14:25 -05:00
Mac OS X: NSBox
container_darwin.m: figure out if our setFrameSize: thing applies to resizing the groupbox as well
2014-08-22 09:36:42 -05:00
2014-08-08 19:14:25 -05:00
Control
Enable()
Disable()
2014-08-22 09:36:42 -05:00
2014-08-08 19:14:25 -05:00
Table
2014-08-22 09:36:42 -05:00
refresh only selected rows of view to avoid flicker (especially on Windows)
2014-08-12 11:33:44 -05:00
add functions for header manipulation
2014-08-22 09:36:42 -05:00
Tab
// [TODO if each tab of your Tab is going to have the same content Controls, then use LikeTab instead, to conserve resources]
Delete()
// Delete removes the given tab.
// It panics if index is out of range.
// After Delete(), the effect of accessing the Control of the deleted tab or any of its children is undefned. [TODO reword?]
investigate close buttons (especially for LikeTab)
2014-08-22 09:36:42 -05:00
LikeArea is probably going to have to be a custom control
Area
keyboard scrolling
2014-08-23 19:40:57 -05:00
OpenTextAreaAt() to allow editing of text blocks from within Areas (only after I add TextArea; it will use TextAreas themselves, rather than providing its own)
2014-08-22 09:36:42 -05:00
Tree
2014-08-22 09:36:42 -05:00
Mac OS X: make sure newScrollView() has the correct parameters for Table and Tree (and that Area has the appropriate ones from both)
TextArea
Mac OS X: be sure to call disableAutocorrect()
2014-08-22 09:36:42 -05:00
Mac OS X
label alignment
// in the other case, the most correct thing would be for Label to be aligned to the alignment rect, but I can't get this working, and it looks fine as it is anyway
other controls
same rules? checkboxes seem damning...
ok in general
spacing applies to alignment rects
will conflict with Stack/Grid precalculation
unless we resize the control and move it around to suit
Tabs seem to have differnt margin rules
need to check padding rules within Tabs
2014-08-22 09:36:42 -05:00
text alignment (think labels and checkboxes) may be a perpetual problem though
2014-08-14 18:45:33 -05:00
activateIgnoringOtherApps: and command line programs: evaluate just how much it will matter
http://stackoverflow.com/a/25318870/3408572
2014-08-22 09:36:42 -05:00
use the undocumented _CFRunLoopSetCurrent() API to drop the stupid "must run on the man thread" restriction
2014-08-12 11:33:44 -05:00
TextField
figure out numerics because you CAN paste into numeric boxes on Windows and GTK+ has no built-in number validator as far as I know
2014-08-22 09:36:42 -05:00
will likely just use Invalid()
2014-08-12 18:55:56 -05:00
Stack, Grid
method calls should trigger re-layout of windows
default buttons
figure out how they interact with Areas (especially on GTK+, where GtkEntry somehow has special handling for this)
2014-08-22 09:36:42 -05:00
in general
new moving stack and future moving heap make package ui a pain in general
2014-08-22 09:36:42 -05:00
issue 8310: watch for changes
dialog boxes
find out if Stop has an effect before a dialog box function returns
2014-08-22 09:36:42 -05:00
our solution for common dialogs is rather heavyweight and doesn't work for user-created dialogs
foreign events are a problem
2014-08-08 19:16:42 -05:00
so I don't forget, some TODOs:
windows
- backgrounds are not transparent
- tab order is backwards
2014-08-14 14:41:05 -05:00
- flicker ahoy
- not all controls are transparent
2014-08-17 22:02:40 -05:00
- extra space on first column of all Tables on real Windows
2014-08-19 03:04:10 -05:00
- labels draw over themselves
- fine-tune Table checkbox behavior (especially with regards to selection)
gtk+
2014-08-15 17:59:42 -05:00
- Area: figure out how Enter is processed in Entry
2014-08-15 18:17:30 -05:00
https://git.gnome.org/browse/gtk+/tree/gtk/gtkwindow.c#n1229
2014-08-20 20:32:59 -05:00
- Table: figure out how to allow empty selection by clicking in an empty area
2014-08-21 08:00:28 -05:00
- After applying the AreaHandler.Key() change, -small crashes in 3.10/distribution but not 3.14/jhbuild
gtk+, windows
- Area: keyboard scrolling
2014-08-15 19:08:14 -05:00
gtk+, mac os x
- figure out how dialogs and Areas work together
- once that is done, document the behavior of Areas
2014-08-24 17:08:10 -05:00
- test beep in TextField.Invalid()
all
- make spaced settable somehow
- rename Selected to Selection?