Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2003-01-13 | Set up DBCS mode when needed in main drawing code. | nyamatongwe | 1 | -0/+1 | |
2003-01-12 | Additions from Yukihiro Nakai to enable DBCS mode on GTK+. | nyamatongwe | 1 | -12/+19 | |
DBCS mode for Surface so that different font and text drawing code can be invoked on GTK+. | |||||
2003-01-10 | Added XPM header which has been separated from LineMarker.h. | nyamatongwe | 1 | -1/+2 | |
2003-01-01 | Changed wrapped printing to be more similar to wrapped display. | nyamatongwe | 1 | -8/+8 | |
2003-01-01 | Fixed up line wrapped printing and added property to turn wrapping on or | nyamatongwe | 1 | -3/+14 | |
off for printing. | |||||
2002-12-31 | Better handling of page breaks when printing with line wrapping. | nyamatongwe | 1 | -47/+52 | |
2002-12-20 | Allow zero width caret. | nyamatongwe | 1 | -2/+2 | |
2002-12-20 | Added moveThumb argument to ScrollTo to allow smoother manipulation of | nyamatongwe | 1 | -2/+4 | |
thumb on GTK+ | |||||
2002-12-01 | Removed deprecateion ifdef around SCN_MODIFYATTEMPTRO. | nyamatongwe | 1 | -2/+0 | |
2002-11-20 | Changed default layout caching to just the caret line. | nyamatongwe | 1 | -1/+1 | |
2002-11-19 | Protect against null pointer dereference when out of memory. | nyamatongwe | 1 | -1/+3 | |
2002-11-17 | Jakub Vrána has added a CSS (Cascading Style Sheet) lexer to Scintilla. | nyamatongwe | 1 | -0/+21 | |
This is separate to the HTML lexer and is only invoked for stand-alone CSS files, not for the STYLE section of HTML files. He also made some other additions. There is a Line Duplicate command which is bound to Ctrl+D. PHP lexing has been improved. | |||||
2002-11-08 | Patch to add fold level boxing from Wilhelm Pflueger. | nyamatongwe | 1 | -8/+50 | |
2002-10-24 | Deprecated features protected by #ifdef. | nyamatongwe | 1 | -0/+6 | |
2002-10-10 | Patch from Alexander Scripnik to make line wrapping work for printing. | nyamatongwe | 1 | -25/+57 | |
2002-10-08 | Append text can be saved in macros. | nyamatongwe | 1 | -0/+1 | |
2002-10-08 | Added AppendText method. | nyamatongwe | 1 | -0/+4 | |
Credit to Sergey. | |||||
2002-10-03 | Cleaned up pixmap marker code. | nyamatongwe | 1 | -13/+0 | |
2002-10-02 | PixMap marker support. | nyamatongwe | 1 | -1/+22 | |
2002-09-19 | Added mthod to turn off vertical scroll bar. | nyamatongwe | 1 | -0/+12 | |
2002-09-13 | Added ChooseCaretX. | nyamatongwe | 1 | -4/+8 | |
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 | |