Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2000-10-06 | Added call to NotifyMove in MovePositionTo to cause SCN_POSCHANGED to be | nyamatongwe | 1 | -0/+1 | |
sent. | |||||
2000-10-05 | Made SCI_SETCURSOR take effect immediately. | nyamatongwe | 1 | -0/+1 | |
2000-10-05 | SetCursor implemented. | nyamatongwe | 1 | -8/+22 | |
2000-10-05 | Mouse capture doesn't always call ::GetCapture. | nyamatongwe | 1 | -17/+33 | |
Better line selection handling. | |||||
2000-10-03 | Mouse down captures now optional. | nyamatongwe | 1 | -1/+8 | |
Save and restore of assertion destination in paint. | |||||
2000-10-03 | Error status attribute created. | nyamatongwe | 1 | -0/+8 | |
2000-09-22 | An hasFocus flag was added to separate logical focus from environment | nyamatongwe | 1 | -2/+21 | |
determined focus. hasFocus determines whether the caret is displayed. | |||||
2000-09-18 | Added patch from Eric Hougaard to send the length in the need shown | nyamatongwe | 1 | -1/+1 | |
notification. | |||||
2000-09-14 | Markus added some more print modes. | nyamatongwe | 1 | -2/+9 | |
2000-09-08 | Implemented settable caret width. | nyamatongwe | 1 | -4/+20 | |
2000-09-06 | Removed a couple of completed items from the TODO list and added a couple | nyamatongwe | 1 | -0/+1 | |
of bugs. Bug wuth not redrawing caret sometimes when performing undo fixed. | |||||
2000-09-05 | Fixed indentation. | nyamatongwe | 1 | -6/+6 | |
2000-09-04 | Added SCFIND_WORDSTART. | nyamatongwe | 1 | -7/+9 | |
2000-08-22 | Added SCE_H_VALUE class for HTML for unquoted values. | nyamatongwe | 1 | -4/+6 | |
2000-08-18 | Added in most of Ferdinand Prantl's changes except for regular expression | nyamatongwe | 1 | -1/+16 | |
search. Some bits not quite done as well. | |||||
2000-08-16 | Invisible text. | nyamatongwe | 1 | -359/+405 | |
Fixes to ensure long lines do not overflow buffers. | |||||
2000-07-26 | Added history entry for 1.30. | nyamatongwe | 1 | -3/+9 | |
Included Ralf's soft tab patch. | |||||
2000-07-24 | Added SCI_CANPASTE. | nyamatongwe | 1 | -0/+1 | |
2000-07-23 | Changed SCI_POSITIONFROMPOINT to take x,y parameters rather than a pointer | nyamatongwe | 1 | -6/+2 | |
to a POINT structure. | |||||
2000-07-22 | Updates to make new API work on both GTK+ and Win32. | nyamatongwe | 1 | -10/+13 | |
2000-07-21 | Provide alternative symbols for all features defined in WinDefs.h to allow | nyamatongwe | 1 | -36/+121 | |
for eventual removal of WinDefs.h. | |||||
2000-07-18 | Added functions to clear all styling and contraction. | nyamatongwe | 1 | -1/+12 | |
2000-07-15 | Fixed problem with CancelModes killing drag and drop by setting empty | nyamatongwe | 1 | -2/+1 | |
selection. On GTK+ double click GTK+ events are ignored as this led to prblems in primary selection code. | |||||
2000-07-14 | Added PositionFromPoint API function. | nyamatongwe | 1 | -0/+7 | |
2000-07-13 | Showing selection in grey when its not the primary selection on GTK+. | nyamatongwe | 1 | -4/+12 | |
2000-07-12 | Added John's autocompletion changes and fiddled to make autocompletion list | nyamatongwe | 1 | -1/+6 | |
size better. | |||||
2000-07-07 | Bug fix to indicators. | nyamatongwe | 1 | -1/+1 | |
2000-07-06 | Optimisations. | nyamatongwe | 1 | -9/+20 | |
2000-07-05 | Fixed BoundsChecker warnings including some leaks. | nyamatongwe | 1 | -1/+3 | |
2000-07-05 | Changed print colour mode to have black on white as well as invert light | nyamatongwe | 1 | -8/+10 | |
states. | |||||
2000-07-01 | Making Drawline less context dependent by moving state from Editor to | nyamatongwe | 1 | -24/+31 | |
LineLayout and ViewStyle. Helps avoid attributes leaking into printing. | |||||
2000-07-01 | Support for print magnification and print light inverted. | nyamatongwe | 1 | -4/+44 | |
Stopped printing of indentation guides. | |||||
2000-06-24 | Fixed crash in indentation guides when indent size is 0. | nyamatongwe | 1 | -0/+2 | |
2000-06-24 | Added methods for getting and setting the start and end of the selection. | nyamatongwe | 1 | -4/+22 | |
2000-06-22 | Caret stability when adding or deleting characters. | nyamatongwe | 1 | -0/+6 | |
Caret redisplayed when focus in on GTK+. Fixed whitespace visible after indentation option. | |||||
2000-06-22 | Fixed tests for view whitespace to be the right way around. | nyamatongwe | 1 | -2/+2 | |
2000-06-22 | Removed deprecated APIs. | nyamatongwe | 1 | -58/+20 | |
Added gets to match sets for UndoCollection, BufferedDraw, CodePage, UsePalette, ReadOnly, CaretFore, and ModEventMask. Undo collection status is a bool again - enumeration deprecated. Timing code commented out. | |||||
2000-06-21 | GetLineEndPosition exposed. | nyamatongwe | 1 | -1/+4 | |
2000-06-21 | Added indentation guide API. | nyamatongwe | 1 | -35/+103 | |
View whitespace has setting to only see outside indentation. Indentation guide highlight. | |||||
2000-06-19 | Tabs in indentation are displayed as vertical lines. | nyamatongwe | 1 | -4/+14 | |
2000-06-13 | Fixed paint bug where last line of document was drawn twice. | nyamatongwe | 1 | -1/+1 | |
2000-06-11 | Made IsControlCharacter inline as Hans says this speeds it up. | nyamatongwe | 1 | -1/+1 | |
2000-06-08 | Added GetColumn that determines the column of a position. | nyamatongwe | 1 | -0/+5 | |
2000-06-08 | Added CreateDocument message and changed AddRefDoc and ReleaseDoc to | nyamatongwe | 1 | -2/+8 | |
AddRefDocument and ReleaseDocument. | |||||
2000-05-20 | Fixed scope of variable. | nyamatongwe | 1 | -0/+4 | |
2000-05-15 | Support for different character sets for each style. | nyamatongwe | 1 | -1/+15 | |
2000-05-10 | Added underline attribute to styles. | nyamatongwe | 1 | -0/+11 | |
Added diagonal and strike-through indicators. | |||||
2000-05-08 | Fixed bug in deleting and changing case of rectangular selections. | nyamatongwe | 1 | -3/+2 | |
2000-05-03 | Removed non-working messages. | nyamatongwe | 1 | -26/+2 | |
2000-05-02 | Small touch ups - removal of unused definitions, fixing documentation. | nyamatongwe | 1 | -1/+1 | |