aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
AgeCommit message (Collapse)AuthorFilesLines
2011-06-07Make auto scrolling word wrap aware. Bug #3312763.Marko Njezic1-6/+2
2011-06-09Improved version of change set 3704. Bug #3312763.nyamatongwe1-23/+54
Make line selection word wrap aware but leave triple-click as selecting document line. From Marko Njezic.
2011-06-08Initialize visblePolicy and visibleSlop to fix bug #3303406.nyamatongwe1-0/+3
2011-06-07Call HiddenLines() only when needed.Marko Njezic1-1/+1
2011-06-06Fix line selection of wrapped lines. Bug #3312763.Marko Njezic1-23/+23
2011-06-07Make SCN_NEEDSHOWN notification work when word wrap is enabled.nyamatongwe1-1/+1
This fixes the last remaining issue from bug #3291579. From Marko Njezic
2011-06-03Fix problem with typing over multiple consecutive selections. Bug #3309906.Marko Njezic1-14/+27
2011-05-21Code formatting normalised to standard.nyamatongwe1-2/+2
2011-05-21Move Selected Lines Up / Down. Feature #3304850.nyamatongwe1-0/+63
From Olivier Dagenais.
2011-05-13Break measurement of text into reasonable sized segments similarnyamatongwe1-4/+4
to drawing. Drawing will now always be broken up at a character boundary even when there is a large number of alphabetic characters. Fixes bug #3165743.
2011-04-29Use indicators to show matching braces. Feature #3290434.nyamatongwe1-15/+59
From Marko Njezic.
2011-04-29Draw SC_IV_LOOKBOTH indent guides on first line if it is empty. Bug #3291317.nyamatongwe1-1/+2
From Marko Njezic.
2011-04-27Optimize fold marker highlight. Feature #3282649.nyamatongwe1-1/+3
From Jérôme LAFORGE.
2011-04-27Fold marker fixes for wrapped lines. Bug #3291579.nyamatongwe1-5/+18
From Marko Njezic.
2011-04-22INDIC_ROUNDBOX can set alpha of outline. Feature #3290434.nyamatongwe1-0/+10
From Marko Njezic.
2011-04-07Add highlighting of current folding block. Feature #3147069.nyamatongwe1-4/+46
APIs MarkerEnableHighlight and MarkerSetBackSelected. From Jérôme Laforge.
2011-04-07Update copyright year.nyamatongwe1-1/+1
2011-04-07Bug #3265401 changes to fold markers.nyamatongwe1-23/+28
Hide folding markers and indicator lines when a fold header does not have any subordinate lines to fold away. Do not contract an empty fold header when clicked on.
2011-04-05Avoid last cppcheck warning in Editor.cxx.nyamatongwe1-0/+2
2011-03-17Avoid drawing alpha rectangles that extend well before the left of thenyamatongwe1-1/+1
window as that causes allocation of large buffers on some platforms.
2011-02-28Avoid shadowed variables as reported by Xcode.nyamatongwe1-5/+4
2011-01-17Add SCI_SETMARGINCURSORN and SCI_GETMARGINCURSORN.jrxx1-2/+23
2011-01-12Ensure empty selection after delete word right.nyamatongwe1-0/+1
2011-01-10Fixing double-click inside word selecting non-word characters. Bug #3111174.nyamatongwe1-13/+57
A double-click on a visible character always selects that character and the word it is in. From Jordan Russell.
2011-01-02Ensure a SCN_UPDATEUI notification occurs when overstrike mode changed.nyamatongwe1-0/+1
2011-01-02Send SCN_UPDATEUI notification when view scrolled. Satisfies feature request ↵nyamatongwe1-6/+20
#3125977. Also includes an updated field in notification so that updates of no interest can be easily ignored.
2010-12-31Minimize redraw when clicking mouse to make new empty selection.nyamatongwe1-1/+2
2010-12-30Fix entering line selection mode after two clicks. Bug #3143635.nyamatongwe1-0/+2
2010-12-29Removed unnecessary redraw in SCI_GOTOPOS for performance.nyamatongwe1-1/+0
Feature #3146650.
2010-12-11Make multiple selection multi-paste work when multi-type is off. Bug #3126221.nyamatongwe1-2/+2
2010-11-21Speed up creating large rectangular selections.nyamatongwe1-1/+1
2010-11-10Remove support for Borland C++.nyamatongwe1-8/+0
Use a library for the lexers with MSVC to simplify SciTE makefile.
2010-11-03Avoid warning for unused assignment.nyamatongwe1-1/+1
2010-11-02Change creation of stippled pixmaps to use FillRectangle calls rather than ↵nyamatongwe1-9/+8
LineTo to avoid blurry images when using an antialiased drawing library like Cairo.
2010-10-27Better version of last patch should get eolfilled right.nyamatongwe1-1/+1
2010-10-26Whitespace.nyamatongwe1-1/+1
2010-10-26Fix problem with background style appearing after last character on line.nyamatongwe1-0/+1
2010-10-20Fixed code that did not split style bytes into styles and indicators.nyamatongwe1-4/+4
2010-10-20Feature request #3064696 SCI_VERTICALCENTRECARET: center current line in window.nyamatongwe1-1/+16
2010-10-11Feature request #3082409 implemented for SCN_HOTSPOTRELEASECLICK event.nyamatongwe1-0/+22
Contributed by Farshid Lashkari.
2010-10-08Fix for bug #3081721. Scroll to make caret visible off-by-one error.nyamatongwe1-1/+1
2010-09-29Fix for bug #3077452 PgUp/PgDn not virtual space aware.nyamatongwe1-8/+11
2010-09-25Optimization of line layout by minimizing calls in Editor::LayoutLine and ↵nyamatongwe1-17/+21
avoiding case force processing unless at least one style uses a case force option.
2010-09-24Added SCI_CONTRACTEDFOLDNEXT as a way to find contracted fold headers ↵nyamatongwe1-0/+15
efficiently.
2010-09-23Fix for bug #3073481, in MouseLeave set ptMouseLast to (-1,-1) so will not sendnyamatongwe1-1/+6
dwell start on timer. Send dwell end for mouse leave.
2010-08-13Fix for bug #3043419 Unfolding incorrectly.nyamatongwe1-1/+10
When new line characters are inserted on a folded fold header line, the fold is unfolded.
2010-08-05Avoid drawing old pixbuf contents when scrolled far horizontally.nyamatongwe1-0/+2
Caused by 16-bit integer underflow on coordinates, possibly in X.
2010-07-13Files changed for new lexer design.nyamatongwe1-0/+21
2010-07-12Feature #3027559 Extend "sticky caret" feature from Jason Oster.nyamatongwe1-10/+20
Additional mode SC_CARETSTICKY_WHITESPACE implemented.
2010-07-07Redraw when annotations change.nyamatongwe1-0/+2
DeleteAllMarks will only cause a modification notification when a mark was actually deleted.