]> git.saurik.com Git - wxWidgets.git/blame - user/wxLayout/TODO
slowdown effect
[wxWidgets.git] / user / wxLayout / TODO
CommitLineData
43e916c3
KB
1
2BUGS
3=====================================================================
4
43e916c3
KB
5- dmalloc shows duplicate deletion after merging two lines and
6 deleting the second half
7
6ba4e8ac 8- word wrap for objects with lots of non-space needs to search in positive
378f7b3f
KB
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
6ba4e8ac 14
e589112e 15
43e916c3
KB
16TODO
17=====================================================================
43e916c3 18
a9a96f0a 19Adding many lines makes it terribly slow.
d1fe5895
KB
20Printing produces empty pages only.
21
c55de8d5 22Formatting of first text in message in M is broken.
d9904e2f
KB
23Large images in last line don't get displayed properly.
24Taking last line's height as default for next is rubbish,
25use "default height" and adjust as necessary.
c55de8d5 26
ae2d6d02
KB
27Selections:
28 - moving in negative direction doesn't work
29 - selection state not properly reset, only works once
30 - selecting non-text objects is strange
31
32wxllist::GetSize() requires extra Layout() call, which should not be
33necessary. Find out why this is so.
0c34becb
KB
34YES, it is necessary, because the normal drawing only happens within
35the visible window.
36I must find a way to re-Layout() objects. This is only required after
37their sizes change:
38- Just mark them as dirty:
39 - mark current line as dirty when editing it (so width gets recalculated)
40 - mark all following lines as dirty when changing font settings
41 - Let Layout() work only on the dirty lines.
42 !!! GOOD: this can also be used to recalculate the wxLayoutObjectCmds'
43 fonts! :-)
ae2d6d02 44
e589112e
KB
45- searching for text
46- moving cursor in non-edit mode
a086e034
KB
47- cursor screen positioning ignores font sizes once again :-(
48 --> UpdateCursorScreenPos() cannot work as it ignores previous font formatting commands.
49 Either draw cursor when drawing text, or wait for new wxLayoutObjectCmd to be fully
50 implemented.
e589112e 51
9e55588f
KB
52RECENTLY FIXED (?)
53 - fix(simplify) cursor size calculation
54 - delete in empty line doesn't work
55 - fix horiz scrollbar size OK here, a Mahogany problem?
e589112e
KB
56 - with a large number of lines, wraps to top of scrolled window
57 --> check where the problem lies, add a debug function showing all coordinates
9e55588f 58
9e55588f
KB
59- update rectangle (needs support in wxllist and wxWindows)
60 --> needs a bit of fixing still
61 some code bits are commented out in wxlwindow.cpp
62 offset handling seems a bit dodgy, white shadow to top/left of cursor
378f7b3f 63
e589112e 64
9e55588f
KB
65 - replacement of llist in window
66 - undo
67 - font optimisations(!)
9e55588f 68 - occasionally wraps lines wongly (twice) ??
378f7b3f 69 - UNDO
9e55588f
KB
70 later:
71 - DragNDrop ... broken in wxGTK at present
72 - cut&paste ... broken in wxGTK at present, Paste already implemented
73 - Selections
378f7b3f 74
9e55588f
KB
75- More optimisations:
76 - let each line have a pointer to the last layoutcommand and let that
77 one only store the settings that changed, then we no longer need to
78 recalculate all the lines
79