aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2020-05-04Feature [feature-requests:1347]. Optimize large insertions by using aZufu Liu1-29/+122
table-driven line end discovery algorithm and performing line insertions in batches.
2020-05-04Feature [feature-requests:1347]. Add methods to insert multiple partitions.Neil1-0/+20
2020-05-03Feature [feature-requests:1347]. Add InsertLines method to PerLine interface andNeil5-1/+50
all implementations. This will allow insertion of lines in batches in a future change set. Added tests for PerLine implementations.
2020-05-02Optimize LineVector by maintaining an activeIndices field to avoid callingNeil1-30/+34
LineStartIndex::Active.
2020-05-02InsertEmpty now returns a pointer to the newly added elements to allow caller toNeil1-2/+4
efficiently set those elements.
2020-05-02Feature [feature-requests:1349] Define CopyAllowLine only on Editor, not ↵Neil1-1/+1
subclass.
2020-05-01Make lambdas noexcept.Zufu Liu4-11/+11
2020-05-01Mark Decoration methods noexcept where reasonable.Neil2-34/+34
2020-04-17Arithmetic between enums is deprecated so use constexpr instead of enum or cast.Neil1-7/+7
Added constexpr where reasonable.
2020-04-10Move static functions into unnamed namespace and simplify line counting.Neil1-21/+15
2020-04-10Run astyle indenter over file.Zufu Liu1-11/+12
2020-04-10Feature [feature-requests:1346]. Convert long if-else block to switch.Zufu Liu1-250/+324
2020-04-10Remove non-standard whitespace.Zufu Liu1-5/+5
2020-04-08Simplify PerLine, remove casts, use noexcept, const, & constexpr where possible.Neil4-60/+56
2020-04-08Feature [feature-requests:1344]. Add methods for iterating through the markerIain Clarke5-0/+44
handles and marker numbers on a line.
2020-04-07Use noexcept and const where possible.Neil2-10/+10
2020-04-05Implement access to the identifier of an ILexer5. This also stops unexpectedNeil1-2/+14
container lexing when a lexer is set.
2020-04-05Perform autoscroll when mouse on pixel just below window.Mitchell Foral1-1/+1
This mostly helps the curses platform where a line of text is a single 'pixel'.
2020-03-31Pass argument as unique_ptr to show transfer of ownership. Add const and ↵Neil3-6/+6
noexcept.
2020-03-27Avoid casts by returning size_t from GetExpanded.Neil1-2/+2
2020-03-29Widen types to size_t to match change from int to position of CallTipSetHltNeil3-84/+96
in Scintilla.iface.
2020-03-29Extract arrow drawing to function. Use noexcept, const and other minor changesNeil2-49/+61
to fix warnings before making widening types in the next change set.
2020-03-26Fix spelling mistakes.Neil8-14/+14
2020-03-25Replace static_cast with dynamic_cast for better type safety and adherence toNeil1-1/+1
C++ Core Guidelines C.146.
2020-03-24Use noexcept where possible.Neil4-34/+38
2020-03-24Use noexcept where possible.Neil2-21/+21
2020-03-23Use noexcept, const, and constexpr where possible.Neil2-17/+17
2020-03-23Replace const with constexpr where possible.Neil1-4/+4
2020-03-23perLineData is polymorphic so replace static_cast with dynamic_cast for betterNeil1-5/+5
type safety and adherence to C++ Core Guidelines C.146.
2020-03-23Drop possibility of Sci_Position, Sci::Line, Sci::Position not being ptrdiff_t.Neil1-8/+8
This reduces casting.
2020-03-19Use noexcept in EditModel.Neil2-6/+6
2020-03-19Minor improvements - noexcept, constexpr, cast removal.Neil2-11/+9
2020-03-19Feature [feature-requests:1302] Simplify DrawCarets.Zufu Liu1-5/+4
2020-03-19Feature [feature-requests:1302] Add IsCaretVisible to simplify DrawCarets.Zufu Liu3-1/+6
2020-03-13Using constexpr in UniConversion and CaseConvert.Neil3-6/+6
2020-02-29Add const and noexcept where they make sense.Neil2-8/+8
2020-02-27Feature [feature-requests:497] Structure caret policy data and pass policy forNeil2-71/+68
dragging instead of manipulating global state..
2020-02-21Feature [feature-requests:497] Automatically scroll while dragging text.McLoo1-0/+14
Added automatic scrolling when text dragged near edge of window.
2020-02-15Extract image conversion from RGBA to BGRA premultiplied into common function.Neil2-0/+17
2020-02-15Bug [#2138]. Potential fix to Direct2D crash when updating driver.Mat Berchtold1-1/+7
2020-01-10Bug [#2132]. Only check for LS/PS/NEL when Unicode line ends turned on.Zufu Liu1-1/+1
2020-01-03Added Raku lexer and style properties and example filesMark Reay1-0/+1
2019-12-31Implement SCI_SETILEXER.Neil2-21/+27
2019-12-22Define ILexer5 with methods for retrieving name, ID, and property values.Neil1-1/+1
Implement ILexer5 on object lexers. Implement ILexer5 on LexerSimple wrapper for function lexers.
2019-12-13Lexilla implemented as loadable lexer.Neil1-2/+0
2019-12-14Remove links to lexers with SCI_EMPTYCATALOGUE definition.Neil1-0/+4
This allows building a version of SciTE that is statically linked to Scintilla and does not include any lexers but allows the use of lexers provided by loading a DLL.
2019-12-31Move collection of modules from Catalogue.cxx to CatalogueModules.h so it canNeil2-19/+13
be reused.
2019-12-13Move automatic numbering of external lexers from Catalogue to ExternalLexer.Neil2-6/+5
This is preparing to move much of Catalogue into a header for reuse.
2019-12-13Use safe mechanism to convert to function pointers.Neil1-10/+23
Mark noexcept where reasonable. Check that functions are available.
2019-12-13Hide details of ExternalLexer and export ExternalLexerLoad function only.Neil3-58/+72