aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
AgeCommit message (Collapse)AuthorFilesLines
2003-10-20Fixes to wrapping code.nyamatongwe1-4/+4
Priority wrap can wrap first line in document. Selection margin drawn after wrapping. Check modification for wrap performed after line heights scrolled because of line insertion or deletion.
2003-10-17SCI_HOMERECTEXTEND added.nyamatongwe1-0/+6
2003-10-16When multiple lines added, wrap all the added lines not just the top 2.nyamatongwe1-5/+4
2003-10-13Hotspot fix from Simon.nyamatongwe1-2/+2
2003-10-09Fixes to Autocomplete crash from Philippe.nyamatongwe1-51/+81
2003-10-03Rectangular selection by keyboard from Philippe.nyamatongwe1-186/+353
2003-09-28Hotspot improvements from Simon, including setting tonyamatongwe1-6/+13
limit hotspots to a single line.
2003-09-24Fixed read past end of allocation in drawing indicators.nyamatongwe1-4/+6
2003-09-20Typo fixed.snyamatongwe1-1/+1
2003-09-20Formatting, dates.nyamatongwe1-3/+7
2003-09-20Patch from Naba to perform incremental wrapping in idle time.nyamatongwe1-17/+109
2003-09-18Safe parts of idle time wrapping.nyamatongwe1-0/+6
2003-09-05Ensure hotspot range initialised.nyamatongwe1-4/+5
Bug fixed in LayoutLine when determining if line has not changed.
2003-08-17Added assertion to prevent retrieving text beyond the end of the document.nyamatongwe1-0/+1
2003-08-14Added BOX indicator.nyamatongwe1-1/+1
2003-08-14Fixed bugs with displaying indicators with wrap turned on.nyamatongwe1-7/+11
2003-08-03Added refresh of pixmaps when wrapping.nyamatongwe1-0/+3
Added some assertions.
2003-07-21Improve 64 bit portability.nyamatongwe1-18/+24
2003-05-11Clipping copy range into document.nyamatongwe1-0/+2
2003-05-11Ensure text copied to clipboard is terminated at correct length.nyamatongwe1-10/+5
2003-05-11Addition of CopyText, CopyRange, and LineCopy.nyamatongwe1-5/+38
2003-04-29Removed hack that did not set the scroll bar when changing documents whichnyamatongwe1-4/+1
worked around a GTK+ 2 problem that is now fixed by using an extra window for the text.
2003-04-29Made Redraw only redraw the text area, not the scrollbars.nyamatongwe1-1/+3
2003-04-21New folding scheme that allows "} else {" to be a fold header.nyamatongwe1-3/+10
2003-04-18New methods for finding the next or previous position taking multi bytenyamatongwe1-0/+6
characters into account.
2003-04-13Avoid resetting scroll bars when changing documents as that leads tonyamatongwe1-1/+4
synchronous painting on GTK+ before completely set up for new document.
2003-04-08Fixed warning in debug code.nyamatongwe1-1/+1
2003-04-07Fix bug on GTK+ 2.x where synchronous repaint causes currentPos to be usednyamatongwe1-1/+8
before it is reset.
2003-03-28Jakub's paragraph movement commands.nyamatongwe1-0/+20
2003-03-27Fixed up problem where multiple hot spots highlighted at once.nyamatongwe1-1/+12
Made line splitting work by taking account of the two bytes needed for a line end in Windows mode. Made line joining add a space between each line if there was not one anyway.
2003-03-22Moved invalidation code around a bit to try to optimize on GTK+ 2.x.nyamatongwe1-2/+2
2003-03-20Patch from Simon Steele to implement the hotspot style and associatednyamatongwe1-17/+139
notifications.
2003-03-18Fixed problem with overstrike mode typing over the last character of thenyamatongwe1-1/+1
file inserted before last character instead.
2003-03-09Added Pango text display support to GTK+ platform.nyamatongwe1-18/+18
Added WindowID parameter to all Surface initialisation methods as Pango requires a window to determine the context used for text functions. AutoSurface changed because of above to take an Editor* argument so it can then discover the code page and window.
2003-03-04Patch from Jakub to optionally implement more POSIX compatible regularnyamatongwe1-1/+5
expressions. \(..\) changes to (..) Fixes problem where find previous would not find earlier matches on same line.
2003-03-01Cancel modes when focus lost.nyamatongwe1-1/+2
2003-02-23Patch from Jakub Vrana to avoid mouse debouncing on Windows where assigningnyamatongwe1-1/+1
a key to double click can result in two mouse clicks arriving with the same time.
2003-02-23Patch from Bruce Dodson for a variant on home and end keys for wrappednyamatongwe1-0/+64
mode that go to the start/end of the current display line. A second hit goes to the start/end of the document line.
2003-02-17Modes (autocompletion, calltip) are cancelled when changing buffers.nyamatongwe1-0/+1
2003-02-15INdentation fix.nyamatongwe1-2/+2
2003-02-14Cleaned up the fold margin code a bit.nyamatongwe1-9/+14
2003-02-14Fixed bug where autoscrolling off the end wrapped back to the beginning.nyamatongwe1-0/+3
2003-02-14May have fixed a problem with wrapping where an added character isnyamatongwe1-35/+35
initially in style 0 and so is narrower than its real styled width. So moved the wrapping until after the styling. Pixmap setup moved out of Paint into a separate method. Shortening of fold margin colour code.
2003-02-10Control of colours of fold margin.nyamatongwe1-168/+193
2003-02-09Join and Split lines methods.nyamatongwe1-19/+84
Method to copy selection end points to target.
2003-02-09Protected style fixed in several ways.nyamatongwe1-57/+94
Method to determine cheaply if protection turned on at all. Caret movement doesn't skip over text outside protected range. Methods for deciding if a range or the selection contains protected text. Several deletion commands perform no action if they would delete protected text. Two phase drawing no longer draws invisible text.
2003-02-02Hoisted drawing of EOL into method so can avoid overwriting lastnyamatongwe1-28/+45
character in two phase mode.
2003-02-02Two phase drawing.nyamatongwe1-34/+127
2003-01-31Patch from David Ascher for horizontal scrolling.nyamatongwe1-0/+9
Change the scroll range when moving caret outside normal scroll range. Modify scroll bar when calling SetXOffset API to ensure synchronised.
2003-01-27Made more robust.nyamatongwe1-25/+36