| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2002-09-04 | When changing code pages invalidate to ensure all text remeasured. | nyamatongwe | 1 | -0/+1 | |
| 2002-08-29 | Minor optimisations. | nyamatongwe | 1 | -4/+7 | |
| 2002-08-05 | Visible whitespace specifiable colours feature from Martin Alderson. | nyamatongwe | 1 | -0/+25 | |
| 2002-08-02 | Added keyboard commands to go to start and end of display lines. | nyamatongwe | 1 | -0/+61 | |
| 2002-08-02 | Made Ctrl+Up and Ctrl+Down not flicker when using strict caret policy. | nyamatongwe | 1 | -7/+10 | |
| Avoided by not calling EnsureCaretVisible for these keys. | |||||
| 2002-08-02 | Changed InvalidateStyleRedraw to call NeedWrapping(). | nyamatongwe | 1 | -7/+1 | |
| 2002-07-29 | Avoid Borland warning. | nyamatongwe | 1 | -1/+1 | |
| 2002-07-28 | Added new line cache validity level between invalid and positions correct | nyamatongwe | 1 | -82/+147 | |
| for when some text or style may or may not have been changed. Allows optimization of the common case where a modification only changes the style of a small range of the document. Changed styling notifications to only include the range up to the last character that was actually modified. Full paint now paints all of the margins as well. Required to simplify handling of abandoned paints where styling causes fold markers to change. Tab key, in insert spaces mode, is treated as a single undo action. | |||||
| 2002-07-23 | Removed unnecessary line layout cache invalidation. | nyamatongwe | 1 | -11/+13 | |
| Fixed problem where wrap needed was moving the last wrapped line forward past lines that were not yet wrapped. Minor improvement to LineLayout to handle lines that only need a single display line which is the majority most of the time. | |||||
| 2002-07-16 | Removed dead code. | nyamatongwe | 1 | -3/+0 | |
| 2002-07-11 | Patch from Philippe to improve caret policy. | nyamatongwe | 1 | -77/+277 | |
| 2002-07-05 | Take no action for SCI_GETTEXT with wParam == 0. | nyamatongwe | 1 | -0/+2 | |
| 2002-06-19 | TextHeight feature contributed by Josh Wingstrom. | nyamatongwe | 1 | -0/+3 | |
| 2002-05-07 | Clear all does not clear the contractionstate if in read-only mode. | nyamatongwe | 1 | -1/+3 | |
| 2002-04-23 | Fixed allocation to be larger to avoid Win32 API problem. | nyamatongwe | 1 | -1/+3 | |
| 2002-04-21 | Some Win64 compatibility and size_t correctness. | nyamatongwe | 1 | -23/+24 | |
| 2002-04-14 | Implemented endAtLastLine attribute which allows option of scrolling one | nyamatongwe | 1 | -6/+24 | |
| page below last document line. | |||||
| 2002-04-12 | Fixed problem where caret would not move to previous line due to wrapping. | nyamatongwe | 1 | -9/+21 | |
| 2002-04-08 | Avoid visible changes when setting scroll width to same value. | nyamatongwe | 1 | -2/+3 | |
| 2002-04-07 | Added ZOOM notification. Added TextWidth method to allow clients to ↵ | nyamatongwe | 1 | -6/+32 | |
| determine width of text items such as width needed for line numbers. | |||||
| 2002-04-04 | Change to horizontal scrolling to allow the assumed document width to be set. | nyamatongwe | 1 | -0/+11 | |
| 2002-04-04 | Improved caret movement in read-only mode by handling more cases where text ↵ | nyamatongwe | 1 | -28/+27 | |
| is inserted and be removing handling of cases where text is deleted as these are handled automatically in the modification listener. | |||||
| 2002-04-03 | Enhancements to read-only mode to stop caret moving when typing or deleting. | nyamatongwe | 1 | -10/+15 | |
| 2002-03-04 | Fixed bug when switching buffers led to stale line layout cache entries | nyamatongwe | 1 | -1/+8 | |
| by deallocating the cache when switching buffers. When number of lines decreases, line layout cache entries for extra lines are deleted. | |||||
| 2002-03-04 | Fixed problem in wrapped mode where cursor up would not move because for | nyamatongwe | 1 | -13/+13 | |
| a position that was at the end of a subline, and thus also the beginning of the next subline LocationFromPosition was favoring the end of subline. Treat a cached wrapping as invalid if the current wrap width is different to when the wrapping was done. | |||||
| 2002-03-04 | Fixed Borland warning. | nyamatongwe | 1 | -4/+4 | |
| 2002-03-01 | Fixed problem where brace highlights were remembered in line layout cache. | nyamatongwe | 1 | -21/+47 | |
| 2002-02-28 | Made number of display lines for a document line be dynamic. | nyamatongwe | 1 | -34/+45 | |
| 2002-02-28 | Line layout cache feature added. | nyamatongwe | 1 | -323/+561 | |
| 2002-02-12 | Avoid extra processing if SETHSCROLLBAR used to set to same value as | nyamatongwe | 1 | -3/+5 | |
| before. | |||||
| 2002-02-09 | Removed unused variable. | nyamatongwe | 1 | -3/+0 | |
| 2002-02-07 | After rectangular paste, caret is left at initial position. | nyamatongwe | 1 | -1/+1 | |
| 2002-02-03 | Patch to ensure caret on after mouse wheel scroll or pressing | nyamatongwe | 1 | -6/+6 | |
| End when already at line end. | |||||
| 2002-02-03 | When changing document, ensured rewrap performed. | nyamatongwe | 1 | -0/+1 | |
| Made memory allocation a little safer in ContractionState. | |||||
| 2002-01-27 | Fixed wrapping problems with displaying visible space characters on | nyamatongwe | 1 | -3/+4 | |
| sublines after the first and with showing selected EOLs on sublines before the last. | |||||
| 2002-01-25 | Removed performance tracing as it cused a divide by zero for Carl. | nyamatongwe | 1 | -8/+8 | |
| 2002-01-24 | Fixed problem with ensuring the caret is visible hen it is on a wrapped | nyamatongwe | 1 | -1/+20 | |
| line. | |||||
| 2002-01-24 | Added parameter to WordStartPosition / WordEndPosition to indicate that | nyamatongwe | 1 | -2/+2 | |
| only word characters should be considered parts of words. | |||||
| 2002-01-23 | Performs a rewrap when zoom changed. | nyamatongwe | 1 | -0/+3 | |
| 2002-01-18 | Updated copyrights for 2002. | nyamatongwe | 1 | -1/+1 | |
| 2002-01-16 | WrapLines performs scroll bar and top line maintenance. | nyamatongwe | 1 | -12/+19 | |
| WrapLines called before ensuring a lin eis visible so doc<->visible mapping correct. When modification changes number of lines, NeedWrapping starts one line before. Horizontal scrolling disallowed even more when in wrap mode. | |||||
| 2002-01-10 | Made code bool-safe and turned Visual C++ warning 4800 back on. | nyamatongwe | 1 | -42/+42 | |
| 2002-01-10 | Patch from Kengo Jinno to make Japanese entry work on Windows 9x. | nyamatongwe | 1 | -28/+33 | |
| More changes from Neil to avoid problem introduced by above with overstrike mode replacing one character with two. Comments about Digital Mars ifdefs. | |||||
| 2002-01-09 | Work on line wrapping. | nyamatongwe | 1 | -18/+33 | |
| Rather than storing a needWrap flag, there is now a record of the last line wrapped, so if a change requires some rewrapping then the wrapping is only performed for the line of the change and subsequent lines. If a change in styling spills off the end of a line, such as occurs by starting a multiline comment, that style change may change the width of subsequent text so rewrapping is performed. When window resized, rewrap only done when width changed as resize may be only vertical. | |||||
| 2001-12-26 | When a paint is abandoned because there is a change in styling outside the | nyamatongwe | 1 | -0/+3 | |
| painting rectangle, and line wrapping is on, the needWrap flag is set because the restyled text may be thinner or thicker and hence require different wrapping. | |||||
| 2001-12-23 | Fixed bug where changing to wrap mode when horizontally scrolled led to | nyamatongwe | 1 | -0/+1 | |
| that sroll amount being kept with no way to return it to 0. Now setting to wrap mode sets the x offset to 0. | |||||
| 2001-12-23 | Fixed MovePositionSoVisible so that when navigating with arrow keys, the | nyamatongwe | 1 | -4/+4 | |
| caret will move over folds correctly. | |||||
| 2001-12-20 | Unicode and multi-byte fixes to edge display and column number calculation. | nyamatongwe | 1 | -5/+14 | |
| Tab arrows are drawn within their areas when line height is large. | |||||
| 2001-12-20 | Increased allocations for laying out and wrapping lines to allow 16000 | nyamatongwe | 1 | -5/+11 | |
| characters and 400 lines. Optimised display by reusing a LineLayout for all the visible lines of a document line. Fixed some processing of multi-byte and UTF-8 characters so that, for example, performing a rectangular selection does not select partial characters. | |||||
| 2001-12-20 | Added changeable attribute to styles that defaults to true. When it is | nyamatongwe | 1 | -2/+8 | |
| false, text in this style is read only. | |||||
