]>
Commit | Line | Data |
---|---|---|
1 | ||
2 | BUGS | |
3 | ===================================================================== | |
4 | ||
5 | - dmalloc shows duplicate deletion after merging two lines and | |
6 | deleting the second half | |
7 | ||
8 | - word wrap for objects with lots of non-space needs to search in positive | |
9 | direction if begin of first object is reached | |
10 | ||
11 | - delete in empty line doesn't always work | |
12 | - fix initial scrollbar sizes | |
13 | - fix horiz scrollbar size | |
14 | - occasionally wraps lines wongly (twice) ?? | |
15 | ||
16 | ||
17 | TODO | |
18 | ===================================================================== | |
19 | ||
20 | - Image at end of a message doesn't get considered properly in | |
21 | wxLayoutList::GetSize(), so it cannot be seen | |
22 | - searching for text | |
23 | - moving cursor in non-edit mode | |
24 | - cursor screen positioning ignores font sizes once again :-( | |
25 | --> UpdateCursorScreenPos() cannot work as it ignores previous font formatting commands. | |
26 | Either draw cursor when drawing text, or wait for new wxLayoutObjectCmd to be fully | |
27 | implemented. | |
28 | ||
29 | RECENTLY FIXED (?) | |
30 | - fix(simplify) cursor size calculation | |
31 | - delete in empty line doesn't work | |
32 | - fix horiz scrollbar size OK here, a Mahogany problem? | |
33 | - with a large number of lines, wraps to top of scrolled window | |
34 | --> check where the problem lies, add a debug function showing all coordinates | |
35 | ||
36 | - update rectangle (needs support in wxllist and wxWindows) | |
37 | --> needs a bit of fixing still | |
38 | some code bits are commented out in wxlwindow.cpp | |
39 | offset handling seems a bit dodgy, white shadow to top/left of cursor | |
40 | ||
41 | ||
42 | - replacement of llist in window | |
43 | - undo | |
44 | - font optimisations(!) | |
45 | - occasionally wraps lines wongly (twice) ?? | |
46 | - UNDO | |
47 | later: | |
48 | - DragNDrop ... broken in wxGTK at present | |
49 | - cut&paste ... broken in wxGTK at present, Paste already implemented | |
50 | - Selections | |
51 | ||
52 | - More optimisations: | |
53 | - let each line have a pointer to the last layoutcommand and let that | |
54 | one only store the settings that changed, then we no longer need to | |
55 | recalculate all the lines | |
56 |