andlabs-ui/todo.md

34 lines
1.9 KiB
Markdown
Raw Normal View History

2014-02-12 09:58:05 -06:00
so I don't forget:
2014-02-12 09:54:58 -06:00
- Window.SizeToFit() or WIndow.OptimalSize() (use: `Window.SetSize(Window.OptimalSize())`) for sizing a window to the control's interest
2014-02-12 09:58:05 -06:00
- Control.Show()/Control.Hide()
- Control.SetText()
2014-02-13 16:04:57 -06:00
- Groupbox
2014-02-14 11:16:27 -06:00
- determine if a selection in a non-editable combobox has been made
2014-02-14 11:18:21 -06:00
- see if we really need to track errors on Combobox.Selection()
- in fact, see if we really need to track errors on a lot of things...
2014-02-14 14:00:59 -06:00
- password entry fields, character-limited entry fields, numeric entry fields, multiline entry fields
- possible rename of LineEdit?
2014-02-14 16:31:21 -06:00
- more flexible size appropriation: allow a small button to be at the top of everything in the main() example here
- scrollbars on listboxes (shouldn't they be automatic? or is that just wine being dumb?)
- [Windows] should ListBox have a border style?
- padding and spacing in Stack; maybe a setting in Stack which keeps controls at their preferred size?
2014-02-12 09:54:58 -06:00
super ultra important things:
- the windows build appears to be unstable:
- 64-bit doesn't work, period: it crashes in malloc in wine with heap corruption warnings aplenty during DLL loading; in windows 7 CreateWindowExW complains about an unregistered window class, yet the RegisterClassW appears to have succeeded and examining the stack in WinDbg indicates the correct class name is being sent (see below)
- 32-bit: it works now, but if I save the class name converted to UTF-16 beforehand, wine indicates that the class name is replaced with the window title, so something there is wrong...
2014-02-12 10:34:10 -06:00
important things:
- maybe make it so sysData doesn't need specialized info on every control type?
- write an implementation documentation.
2014-02-14 16:31:21 -06:00
- Control.preferredSize() (definitely needed for Grid and Form)
2014-02-12 10:34:10 -06:00
2014-02-12 09:54:58 -06:00
far off:
- localization
2014-02-12 10:34:36 -06:00
- strip unused constants from the Windows files
- combine more Windows files; rename some?
2014-02-13 16:04:57 -06:00
- normalize error handling to adorn errors with function call information
maybe:
- rename Stack to Box?