aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
AgeCommit message (Collapse)AuthorFilesLines
2012-07-11Fix margin click so clicking on first pixel of margin causes a notification.nyamatongwe1-1/+1
From John Vella.
2012-07-02When line starts with 0 width character, do not allow end of previous linenyamatongwe1-0/+2
to be part of block caret range.
2012-06-27Fix screen redraw issues introduced with change set 4199.Marko Njezic1-6/+7
2012-07-02Reduce scope of variable.nyamatongwe1-1/+1
2012-07-01Fix hang when Zero Width Space U+200B occurs at start of document.nyamatongwe1-1/+1
2012-06-27Using the correct side margin for previous commit.nyamatongwe1-1/+1
2012-06-26Bugs #699587, #3537799. Allow text at start of line to overlap 1 pixelnyamatongwe1-3/+16
into the margin as this displays serifs and italic stems for aliased text.
2012-06-17Use std::string instead of fixed size strings.nyamatongwe1-0/+12
Decrease direct access to the autocompletion list box from outside AutoComplete.
2012-05-29add CharClassifier::GetCharsOfClassMook1-0/+16
add SCI_GETWORDCHARS(<unused>, stringresult chars) command to get word chars add SCI_GETWHITESPACECHARS(<unused>, stringresult chars) to get whitespace chars add SCI_GETPUNCTUATIONCHARS(<unused>, stringresult chars) to get punctutation also add tests for {Set,Get}{Word,Whitespce,Punctuation}Chars, CharClassifier
2012-05-26Add DeleteRange method.nyamatongwe1-0/+4
2012-05-26Add GetRangePointer and GetGapPosition methods.nyamatongwe1-0/+6
2012-05-26Relying on Document for position in line of line end characters.nyamatongwe1-10/+3
2012-05-26Move classification of UTF-8 byte sequences into UniConversion module.nyamatongwe1-86/+5
2012-05-16Treat 66 non-characters *FFFE, *FFFF, FDD0 .. FDEF as errors and display the ↵nyamatongwe1-0/+8
individual bytes. See The Unicode Standard (version 6.1) section 16.7 Noncharacters.
2012-05-08Feature #3520037. Trim current selection when setting a word ornyamatongwe1-5/+10
line selection to avoid any doubly selected ranges.
2012-05-05Replace std::auto_ptr with own code as has been deprecated by C++11.nyamatongwe1-2/+15
2012-05-04Bug #3522250. Group undo for newline with selection.nyamatongwe1-2/+11
2012-05-04Bug #3522251. SCI_NEWLINE with multiple selections now only replaces thenyamatongwe1-0/+5
main selection.
2012-04-24Feature #3520037. Restore Ctrl+Triple Click adding a line to the selection.nyamatongwe1-1/+1
Collapse selection if multiple selection turned off. From Marko Njezic.
2012-04-23Feature #3520037. Modify Ctrl+Double Click change so that does not triggernyamatongwe1-1/+1
except for transition from character selection to word selection.
2012-04-23Bug #3519246. Stop allowing selection into virtual space for rectangular ↵nyamatongwe1-1/+1
selection when virtual space set to SCVS_USERACCESSIBLE.
2012-04-23Allow Ctrl+Double Click to add words to the selection.nyamatongwe1-1/+2
2012-04-15Add an option to draw wrap markers in line number margin. Feature #3518198.Marko Njezic1-20/+25
2012-04-21Ensure annotation box is drawn using base style. Bug #3519872.nyamatongwe1-1/+1
2012-04-15Printing uses different margins, so reset screen margins. Bug #3517854.Marko Njezic1-0/+4
2012-04-14Remove Fold method as identical to superclass. Feature #3517596.nyamatongwe1-10/+0
From Marko Njezic.
2012-04-14Remove unused WhiteSpace get/set. Feature #3517596.nyamatongwe1-8/+0
From Marko Njezic.
2012-04-13Include wrap indentation in alpha selection when selecting whole lines. Bug ↵Marko Njezic1-0/+4
#3515555.
2012-04-12Avoid drawing alpha selection into wrap indentation area. Bug #3515555.nyamatongwe1-1/+1
2012-04-12Bug #3514882. Fix recent change set 4086 which caused selection to end of a ↵nyamatongwe1-1/+2
wrapped subline to continue 1 pixel into the next subline. From Marko Njezic.
2012-04-11Bug #3514882. Properly draw translucent whole line states, by respecting rightnyamatongwe1-9/+9
margin and also not going out of bounds. Don't go out of bounds into right margin when drawing beyond EOF area. From Marko Njezic.
2012-04-11Bug #3514882. Properly determine last line that needs to be styled beforenyamatongwe1-2/+2
painting by calling StyleToPositionInView() after style data is refreshed, so that PositionAfterArea() can use the correct line height in calculation. This problem was introduced in change set 3259. From Marko Njezic.
2012-04-11Bug #3514882. Stop invalidating pixmapLine (and indirectly pixmapSelMargin)nyamatongwe1-1/+0
unnecessary on each call to Paint(). This was added in change set 2688 as part of a fix for resource leaks problem in palette mode, which doesn't exist anymore. From Marko Njezic.
2012-04-06Remove unused variable.nyamatongwe1-1/+0
From Marko Njezic.
2012-04-06Bug #3513946. Make printing work when Direct2D is used for on screen drawing.nyamatongwe1-2/+5
This will stop Scintilla from crashing. From Marko Njezic.
2012-03-31Make MoveSelectedLines() work properly when there's no newline at EOF. Bug ↵Marko Njezic1-8/+25
#3511023.
2012-04-03Moved wrap indent code to wrapping branch.nyamatongwe1-11/+6
2012-03-31Bug #3512961. Word wrap indentation for print using positions calculated fornyamatongwe1-10/+11
display instead of printer.
2012-02-29Always record undo action for Ctrl+DUnknown1-1/+1
2012-03-01Bug #3494492. Change aveCharWidth in FontMeasurements to actually storenyamatongwe1-2/+2
fractional width. This change complements change set 3994. Make WidthText() and AverageCharWidth() actually return fractional widths under Direct2D. From Marko Njezic.
2012-02-29Bug #3493503. Clip drawing operations to the painting area when using unbufferednyamatongwe1-5/+10
mode. This prevents parts of margin being drawn out of bounds. Don't set clipping region when buffered mode is used, as it is not necessary. From Marko Njezic.
2012-02-27Feature #3493530. Reduce amount of redrawing triggered by ↵nyamatongwe1-2/+3
SCI_MARKERSETBACKSELECTED and SCI_MARKERENABLEHIGHLIGHT. From Marko Njezic.
2012-02-25Bug #3493503. Properly redraw image markers with height larger than line height.Marko Njezic1-1/+17
Regression from change set 3949.
2012-02-17Draw markers horizontally off center only on textual margins. Bug #3488696.Marko Njezic1-1/+1
2012-02-18Wrap lines if needed when moving to a position. Bug #3487397.nyamatongwe1-3/+7
From Marko Njezic.
2012-02-07Respect virtual space in ButtonDown/ButtonUp and prevent random behavior ofMarko Njezic1-23/+29
ctrl+click in margin in certain cases. Bug #3484370.
2012-02-09Fix rounding issue in SPositionFromLocation() that started with introduction ofMarko Njezic1-1/+1
fractional positioning. Bug #3485669.
2012-02-08Fix spurious extra indentation guide at end of indentation caused by changenyamatongwe1-9/+17
to fractional positioning.
2012-02-04Make priority wrap actually process all displayed document lines. Bug #3484179.Marko Njezic1-0/+6
2012-02-04Properly highlight EOL blobs. Bug #3484330.Marko Njezic1-16/+20