]> git.saurik.com Git - wxWidgets.git/blame - TODO.txt
Added wxAccelerators (sort of)
[wxWidgets.git] / TODO.txt
CommitLineData
ccd82cd1
VZ
1********************* TODO list for wxWindows 2 ******************************
2
3The items are grouped by platform (generic, MSW, GTK...) and inside by
4subject. The first 2 columns containg the following codes:
5
6Priority classification: Amount of work expected:
79 next point release q quick fix
88 next release s small change
97 as soon as possible l a little work
106 soon w some work
115 should be included b big change
124 nice to have m major change
133 consider including ? don't know how to fix
142 maybe not - unclassified
151 probably not
16- unclassified
17
18After the subject the name in brackets indicates the person who is going to do
19it.
20
21=============================== common ========================================
22
234w wxString optimization (VZ)
24 allocate more memory than needed to avoid reallocation each time when
25 operator+ or += is used.
26
276b stream classes (VZ)
28
29=============================== generic ======================================
30
317s wxTreeCtrl root item (RR)
32 root item is not shown currently (unlike in MSW version)
33
345w wxImageList
35 it's not implemented currently, to do (assuming that all images have the
36 same size - no resizing should be done to simplify the job)
37
38================================ MSW ==========================================
39
407w consistent keyboard interface and focus behaviour (VZ)
41 currently, the focus is lost all the time (after a MessageBox, for example)
42 and sometimes TABbing through controls doesn't work
43
44================================ GTK ==========================================
45
469m keyboard interface (RR)
47 TAB traversal, Alt-letter accelerators for the controls and accelerators
48 for menu items - TODO.
49
503b wxTreeCtrl native implementation?
51 GTK has a GtkCTree widget which seems to be quite close to the Windows
52 standard control - what about writing a native wxTreeCtrl based on it?