More future plans and TODOs.

This commit is contained in:
Pietro Gagliardi 2014-04-20 22:52:26 -04:00
parent 96d5c522f7
commit 5cac12e3f0
2 changed files with 23 additions and 2 deletions

View File

@ -309,6 +309,11 @@ TODO SORT
- http://blogs.msdn.com/b/oldnewthing/archive/2004/03/29/101121.aspx - http://blogs.msdn.com/b/oldnewthing/archive/2004/03/29/101121.aspx
- http://blogs.msdn.com/b/oldnewthing/archive/2004/04/19/115912.aspx - http://blogs.msdn.com/b/oldnewthing/archive/2004/04/19/115912.aspx
- http://blogs.msdn.com/b/oldnewthing/archive/2004/07/01/170856.aspx - http://blogs.msdn.com/b/oldnewthing/archive/2004/07/01/170856.aspx
- http://blogs.msdn.com/b/oldnewthing/archive/2004/07/12/180642.aspx
- http://blogs.msdn.com/b/oldnewthing/archive/2004/07/29/200653.aspx
- http://blogs.msdn.com/b/oldnewthing/archive/2004/08/02/205624.aspx
- http://blogs.msdn.com/b/oldnewthing/archive/2004/08/04/208005.aspx
- http://blogs.msdn.com/b/oldnewthing/archive/2004/08/26/220873.aspx (on arrays of size 1 in various data structures; will need to double-check alignments)
interesting things interesting things
- low-tech models http://blogs.msdn.com/b/oldnewthing/archive/2003/10/07/55202.aspx - low-tech models http://blogs.msdn.com/b/oldnewthing/archive/2003/10/07/55202.aspx
@ -369,10 +374,25 @@ interesting things
- thread safety vs reentrancy http://blogs.msdn.com/b/oldnewthing/archive/2004/06/29/168719.aspx - thread safety vs reentrancy http://blogs.msdn.com/b/oldnewthing/archive/2004/06/29/168719.aspx
- shell and COM allocation http://blogs.msdn.com/b/oldnewthing/archive/2004/07/05/173226.aspx - shell and COM allocation http://blogs.msdn.com/b/oldnewthing/archive/2004/07/05/173226.aspx
- minimized window coordinates (should I move this one to the higher list?) http://blogs.msdn.com/b/oldnewthing/archive/2004/07/07/175285.aspx - minimized window coordinates (should I move this one to the higher list?) http://blogs.msdn.com/b/oldnewthing/archive/2004/07/07/175285.aspx
- DPI (may or may not be related to future developments in the library) http://blogs.msdn.com/b/oldnewthing/archive/2004/07/14/182971.aspx
- more on UNICODE http://blogs.msdn.com/b/oldnewthing/archive/2004/07/15/184076.aspx
- PROPER UNICODE RENDERING IN WINDOWS (MIGHT BE MOVED UP???) http://blogs.msdn.com/b/oldnewthing/archive/2004/07/16/185261.aspx
- callback templates http://blogs.msdn.com/b/oldnewthing/archive/2004/07/19/187415.aspx
- more info on shell interop http://blogs.msdn.com/b/oldnewthing/archive/2004/07/20/188696.aspx
- proof about WM_CLOSE for GUI windows from the task manager (see also our AppQuit channel) http://blogs.msdn.com/b/oldnewthing/archive/2004/07/22/191123.aspx
- nested dialogs http://blogs.msdn.com/b/oldnewthing/archive/2004/07/30/201988.aspx
- `.shared` memory for IPC is a security hole (related to multiple instances) http://blogs.msdn.com/b/oldnewthing/archive/2004/08/04/208003.aspx
- fake menus http://blogs.msdn.com/b/oldnewthing/archive/2004/08/20/217684.aspx
- STRRET (more shell stuff) http://blogs.msdn.com/b/oldnewthing/archive/2004/08/23/218837.aspx
- reading from the registry may not yield valid C strings http://blogs.msdn.com/b/oldnewthing/archive/2004/08/24/219444.aspx
- using COM to fake add/remove programs http://blogs.msdn.com/b/oldnewthing/archive/2004/08/31/223271.aspx
- thread safety of function calls http://blogs.msdn.com/b/oldnewthing/archive/2004/09/03/225238.aspx
articles on time articles on time
- http://blogs.msdn.com/b/oldnewthing/archive/2004/02/26/80492.aspx - http://blogs.msdn.com/b/oldnewthing/archive/2004/02/26/80492.aspx
- http://blogs.msdn.com/b/oldnewthing/archive/2004/08/25/220195.aspx
- http://blogs.msdn.com/b/oldnewthing/archive/2004/09/02/224672.aspx
up to up to
http://blogs.msdn.com/b/oldnewthing/default.aspx?PageIndex=374 http://blogs.msdn.com/b/oldnewthing/default.aspx?PageIndex=368
last one: Why does icon text get a solid background if drop shadows are disabled? last one: Storsjöodjur hunting season will opening soon

View File

@ -41,6 +41,7 @@ super ultra important things:
- make sure Areas get keyboard focus when clicking outside the actual Area space on all platforms - make sure Areas get keyboard focus when clicking outside the actual Area space on all platforms
- make sure keyboard events on numpad off on all platforms don't switch between controls - make sure keyboard events on numpad off on all platforms don't switch between controls
- on Windows, Shift+(num pad key) triggers the shifted key code when num lock is off; will need to reorder key code tests on all platforms to fix this - on Windows, Shift+(num pad key) triggers the shifted key code when num lock is off; will need to reorder key code tests on all platforms to fix this
- http://blogs.msdn.com/b/oldnewthing/archive/2004/09/06/226045.aspx
- pressing global keycodes (including kwin's zoom in/out) when running the keyboard test in wine causes the Area to lose keyboard focus; this doesn't happen on the GTK+ version (fix the Windows version to behave like the GTK+ version) - pressing global keycodes (including kwin's zoom in/out) when running the keyboard test in wine causes the Area to lose keyboard focus; this doesn't happen on the GTK+ version (fix the Windows version to behave like the GTK+ version)
- GTK+ indefinite progress bar animation is choppy: make sure the speed we have now is the conventional speed for GTK+ programs (HIG doesn't list any) and that the choppiness is correct - GTK+ indefinite progress bar animation is choppy: make sure the speed we have now is the conventional speed for GTK+ programs (HIG doesn't list any) and that the choppiness is correct
- Message boxes are not application-modal on some platforms - Message boxes are not application-modal on some platforms