aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
AgeCommit message (Collapse)AuthorFilesLines
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
2003-01-13Set up DBCS mode when needed in main drawing code.nyamatongwe1-0/+1
2003-01-12Additions from Yukihiro Nakai to enable DBCS mode on GTK+.nyamatongwe1-12/+19
DBCS mode for Surface so that different font and text drawing code can be invoked on GTK+.
2003-01-10Added XPM header which has been separated from LineMarker.h.nyamatongwe1-1/+2
2003-01-01Changed wrapped printing to be more similar to wrapped display.nyamatongwe1-8/+8
2003-01-01Fixed up line wrapped printing and added property to turn wrapping on ornyamatongwe1-3/+14
off for printing.
2002-12-31Better handling of page breaks when printing with line wrapping.nyamatongwe1-47/+52
2002-12-20Allow zero width caret.nyamatongwe1-2/+2
2002-12-20Added moveThumb argument to ScrollTo to allow smoother manipulation ofnyamatongwe1-2/+4
thumb on GTK+
2002-12-01Removed deprecateion ifdef around SCN_MODIFYATTEMPTRO.nyamatongwe1-2/+0
2002-11-20Changed default layout caching to just the caret line.nyamatongwe1-1/+1
2002-11-19Protect against null pointer dereference when out of memory.nyamatongwe1-1/+3
2002-11-17Jakub Vrána has added a CSS (Cascading Style Sheet) lexer to Scintilla.nyamatongwe1-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-08Patch to add fold level boxing from Wilhelm Pflueger.nyamatongwe1-8/+50
2002-10-24Deprecated features protected by #ifdef.nyamatongwe1-0/+6
2002-10-10Patch from Alexander Scripnik to make line wrapping work for printing.nyamatongwe1-25/+57
2002-10-08Append text can be saved in macros.nyamatongwe1-0/+1
2002-10-08Added AppendText method.nyamatongwe1-0/+4
Credit to Sergey.
2002-10-03Cleaned up pixmap marker code.nyamatongwe1-13/+0
2002-10-02PixMap marker support.nyamatongwe1-1/+22
2002-09-19Added mthod to turn off vertical scroll bar.nyamatongwe1-0/+12
2002-09-13Added ChooseCaretX.nyamatongwe1-4/+8