aboutsummaryrefslogtreecommitdiffhomepage
path: root/src
AgeCommit message (Expand)AuthorFilesLines
2017-07-17Backport: Casts required for Unix LP64 after changes to Sci_Position/Sci_Posi...Neil Hodgson1-10/+16
2017-06-22Backport: Add style metadata methods with null implementations.Neil1-0/+49
2017-07-09Backport: Bug [#1955]. The data parameter to ILoader::AddData made const.Justin Dailey2-2/+2
2017-07-07Backport: Redraw when overtype changed so caret change visible even when not ...Justin Dailey1-3/+6
2017-06-22Backport: Cast between Sci_Position.h types used for lexers and Position.h ty...Neil5-252/+310
2017-06-19Backport: The default encoding is now UTF-8.Neil1-1/+1
2017-06-13Backport: Bug [#1949]. Fix drawing failure in wrap mode for delete to start/e...Neil1-4/+10
2017-06-12Backport: Remove old timer code in favour of the FineTicker* methods.Neil2-100/+22
2017-06-12Backport: Simplify mouse and keyboard handling by only retaining the 'WithMod...Neil4-58/+8
2017-06-12Backport: Removed unused functions and methods from Platform.h.Neil6-49/+131
2017-06-11Backport: Implement SCN_AUTOCSELECTIONCHANGE notification.Neil2-6/+32
2017-06-09Backport: Use min and max from std instead of own version from platform.Neil2-4/+6
2018-03-11Added optional Lua lexer support.mitchell1-0/+1
2017-05-22More canonical version of previous change 6283.Neil1-5/+1
2017-05-22Fix a crash when a line containing a marker was deleted.Neil1-1/+5
2017-05-21Use UniqueString to simplify FontNames.Neil2-16/+9
2017-05-21Use unique_ptr and forward_list to regularize PerLine data structures.Neil5-130/+67
2017-05-21Make SparseVector work with move-only types.Neil10-74/+87
2017-05-21Make SplitVector work with move-only types like unique_ptr.Neil4-57/+97
2017-05-12Replace intrusive linked lists with vector and unique_ptr to simplify code.Neil2-94/+25
2017-05-10Feature [feature-requests:#1187]. Update scroll bar when annotations added,Neil1-1/+4
2017-05-10Simplify DecorationList and its clients by using a vector instead of anNeil5-88/+71
2017-05-10Use unique_ptr fpr Partitioning, RunStyles, SparseVector, PositionCache andNeil9-126/+122
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
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
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
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