DP: GetBitmap() added to wxImageList
[wxWidgets.git] / TODO.txt
1 ********************* TODO list for wxWindows 2 ******************************
2
3 The items are grouped by platform (generic, MSW, GTK...) and inside by
4 subject. The first 2 columns containg the following codes:
5
6 Priority classification:                Amount of work expected:
7 9       next point release                      q       quick fix
8 8       next release                            s       small change
9 7       as soon as possible                     l       a little work
10 6       soon                                    w       some work
11 5       should be included                      b       big change
12 4       nice to have                            m       major change
13 3       consider including                      ?       don't know how to fix
14 2       maybe not                               -       unclassified
15 1       probably not
16 -       unclassified
17
18 After the subject the name in brackets indicates the person who is going to do
19 it.
20
21 =============================== common ========================================
22
23 4w wxString optimization (VZ)
24    allocate more memory than needed to avoid reallocation each time when
25    operator+ or += is used.
26
27 6b stream classes (VZ)
28
29 =============================== generic  ======================================
30
31 7s wxTreeCtrl root item (RR)
32    root item is not shown currently (unlike in MSW version)
33
34 5w 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
40 7w 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
46 9m keyboard interface (RR)
47    TAB traversal, Alt-letter accelerators for the controls and accelerators
48    for menu items - TODO.
49
50 3b 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?