aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Collapse)AuthorFilesLines
2017-05-10Use unique_ptr fpr Partitioning, RunStyles, SparseVector, PositionCache andNeil9-126/+122
Document.
2017-05-02More consistent use of size_t when converting Unicode formats.Neil3-13/+13
2017-05-02Use unique_ptr for drawing surfaces and don't check for allocation failureNeil7-65/+42
as that throws an exception. Also use unique_ptr for tab stop positions.
2017-05-01Use std::unique_ptr to simplify ContractionState.Neil2-23/+17
2017-04-29Use std::unique_ptr, std::vector, and move construction to simplify UndoHistoryNeil4-57/+35
and make it easier to modify. Remove out of date warning suppression.
2017-04-25Bug [#1940]. Canceling modes with the Esc key preserves a rectangular selection.Neil1-1/+1
2017-04-22Using unique_ptr to simplify ownership of images, case folder, and list box.Neil9-52/+29
2017-04-22Encapsulate the LexInterface of Document.Neil3-9/+14
2017-04-22Include <memory> for std::unique_ptr.Neil9-0/+9
2017-04-21More consistent deletion of standard methods.Neil18-15/+93
2017-04-20More consistent deletion of standard methods.Neil1-1/+2
2017-04-19Use =delete for unwanted functions.Neil11-39/+34
2017-04-19Drop reinterpret_cast when can implicit cast to void* or const void*.Neil1-2/+2
2017-04-19Use "override" for implementations of CaseFolder and PerLine.Neil Hodgson2-17/+17
2017-04-15Avoid calling virtual functions in destructor. Mark overridden methods.Neil Hodgson1-10/+10
2017-04-15Avoid calling virtual functions in constructors and destructors.Neil2-3/+10
2017-04-15Use bool literals true and false instead of 1 and 0.Neil3-5/+5
2017-04-14Ensure capitalHeight initialised.Neil1-0/+1
2017-04-12For speed, store height of capital letters in FontMeasurements so notNeil3-2/+3
recalculated for every character blob.
2017-04-09Further use of range-for.Neil9-78/+75
2017-04-09Modernise ViewStyle with vector, unique_ptr, any_of, and method deletion.Neil5-108/+93
2017-04-08Use reference for efficiency.Neil1-1/+1
2017-04-07Prefer C++ static cast over C-style casts.Neil2-5/+6
2017-04-07Remove unnecessary casts.Neil1-2/+2
2017-04-07Drop "virtual" from methods that do not need to be virtual.Neil1-2/+2
2017-04-07Use same parameter names in declarations and definitions.Neil10-20/+20
2017-04-07Check index before checking value at index.Neil1-2/+2
2017-04-06Added const where possible.Neil25-252/+252
2017-04-06Added a caret line frame as an alternative visual for highlighting the caret ↵A-R-C-A4-9/+84
line.
2017-04-03Prevent warning from MSVC Code Analysis.Neil1-4/+6
2017-04-02Added "Reverse Selected Lines" as SCI_LINEREVERSE.Vicente2-0/+32
2017-04-01Fix DisplayFromPosition pos argument to be correct type.Neil2-2/+2
2017-04-01More encapsulation for Decoration and DecorationList.Neil5-39/+56
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil25-84/+82
where it may be needed in the future.
2017-03-31Prefer standard min/max over Platform's as adapts to changed types.Neil5-31/+32
2017-03-31Hide decorations details a little.Neil3-4/+6
2017-03-31Delete declaration of unimplemented method.Neil1-1/+0
2017-03-31Using Sci::Position and Sci::Line to mark variables that are document positionsNeil29-1205/+1200
and lines.
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