aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2017-03-23Updated case conversion and character categories to Unicode 9.Neil1-3/+199
2017-03-19Group non-single-phase drawing before text.Neil1-11/+11
2017-03-16For single phase drawing ensure remainder of line filled by always fillingNeil1-1/+1
in tag fold drawing.
2017-03-16For single phase drawing ensure edges and mark underline drawn over fold tags byNeil1-5/+8
moving drawing of edge line and mark underline after fold tags.
2017-03-16For multiphase drawing ensure edges and mark underline drawn over fold tags byNeil1-0/+2
moving background drawing of fold tags before edge line and mark underline.
2017-03-17Round left and right sides of fold text box to ensure within the allocation.Neil1-8/+11
2017-03-16Fix 1 pixel unpainted as background.Neil1-1/+1
2017-03-16Fix difference between right of line end and left of fold tag.Neil1-1/+1
2017-03-16Fix use-after-free in fold tags when top line folded then new top line inserted.Neil1-1/+2
In SparseVector, string inserted at start then NULL inserted at start.
2017-03-08Fix warnings from Visual Studio 2017.Neil2-4/+4
2017-03-07Bug [#1910]. Accessibility support may be queried and, on GTK+, disabled.Neil1-0/+7
2017-03-07Avoid potential problems with memcmp reading past end of object.Neil1-2/+6
2017-03-06Use several C++11 features as examples so problems with these features are seen.Vicente7-27/+26
Features used are move constructor, unique_ptr, deleted functions, enum class, lambda expression, and range for loop.
2017-03-06New "indent" lexer styled as plain text but folded by indentation level.Vicente1-0/+1
2017-03-04Use "override" for Cocoa platform code and add to Editor where possible.Neil Hodgson1-16/+16
2017-03-04Use C++11 keyword "override" for methods that override a base class.Neil4-9/+9
2017-03-02Fix potential problems with IME on Cocoa when document contains invalid UTF-8.Neil2-0/+24
2017-02-23Bug [#1905]. Fix stream selection mode when moving caret up or down.Neil1-0/+3
2017-02-02Using better checked static_cast instead of reinterpret_cast for void*.Neil Hodgson1-1/+1
2017-01-22Display block caret over the character at the end of a selection to be similarJohn Ehresman1-1/+7
to other editors.
2017-01-22Remove extraneous "void".Neil2-2/+2
2017-01-19Bug [#1896]. Avoid unnecessary unfolding when a deletion does not include a lineNeil1-2/+2
end.
2017-01-19Bug [#1896]. Ensure folding consistent when fold header added above folded part.Neil1-1/+1
2017-01-04Mark some const methods as const.Neil4-4/+4
2016-12-09Warning suppression and documentation of previous change 6082.Neil1-1/+2
2016-12-09Use double coordinates instead of float in some cases as float ran out ofNeil5-7/+24
precision in long documents. This meant that individual lines could not be selected by mouse when the document exceeded 16.7 million lines.
2016-06-17Bug [#1888]. Only invalidate selection when using SCI_SETSELECTIONN api'sJohn Ehresman2-32/+40
2016-11-23Implementation of MarginRightClick event.Tse Kit Yam4-3/+38
2016-11-29Textual tags may be displayed on folded lines with SCI_TOGGLEFOLDSHOWTEXT.Tse Kit Yam7-16/+179
2016-11-25Feature [feature-requests:#1166]. EDIFACT lexer and folder added.Iain Clarke1-0/+1
2016-11-16Removed elements that have been deprecated for more than 5 years.Neil1-9/+0
2016-11-16Deprecate non-branded struct names in Scintilla.h.Neil1-1/+1
2016-11-15Remove declaration of methods that were moved to Document in change set 2867.Neil1-16/+0
2016-11-14Added alternate appearance for visible tabs which looks like a horizontal line.jedailey4-11/+28
2016-11-07Specify 'noexcept' to use Clang with GNU <regex>.Neil1-2/+10
Since 'noexcept' is not available with all compilers, restrict it to cases where needed.
2016-11-05Add options to choose between the locations of a position when thereNeil Hodgson6-17/+72
are multiple locations for one position. The main current use is to find the location at the end of a line or display line when the commonly used location is at the start of the next line.
2016-10-30Add header needed for std::string.Neil Hodgson1-0/+1
2016-10-27Tidy CaseMapString by moving some mechanics into CaseConvert. Use StringEncodeNeil2-0/+11
and StringDecode more and make more likely to be optimized.
2016-10-26INDIC_POINT and INDIC_POINTCHARACTER indicators added to display small arrowsNeil3-8/+34
underneath positions or characters.
2016-10-26Moved location to margin code from Editor to ViewStyle.Neil3-7/+13
2016-10-26Marked method const as it can be.Neil2-2/+2
2016-10-22Redraw previous selection when switching from rectangular selection to lineNeil1-0/+1
selection.
2016-10-19Margin click to select line now clears rectangular and additional selections.Neil1-0/+3
2016-10-18Add SparseVector template as a new data structure for storing per-line dataNeil1-0/+186
which is 0 or NULL for most lines.
2016-10-06Word selection, navigation, and manipulation is now performed on charactersNeil3-144/+379
instead of bytes leading to more natural behaviour for multi-byte encodings like UTF-8.
2016-09-30Enable SplitVector to store objects by using std::copy to copy elements insteadNeil1-10/+12
of memmove and memcpy. This allows SplitVector<std::string> to work.
2016-09-29The number of margins can be changed with SCI_SETMARGINS.Neil6-13/+21
2016-09-29Margin type SC_MARGIN_COLOUR and API SCI_SETMARGINBACKN added.Neil3-0/+17
Allows choosing any colour for a margin.
2016-09-27On Win32, mouse wheel scrolling can be restricted to only occur when the mouseStefan Küng2-0/+9
is within the window.
2016-09-23EDGE_MULTILINE and SCI_MULTIEDGEADDLINE added to allow displaying multipleA-R-C-A4-18/+59
vertical edges simultaneously.