aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/RunStyles.cxx
AgeCommit message (Expand)AuthorFilesLines
2022-07-29Apply rule-of-zero to delete standard methods where possible as handled byNeil1-4/+0
2022-07-29Flatten Partitioning and RunStyles to avoid a level of indirection by containingNeil1-55/+55
2022-07-28Use extra consts to avoid 32 to 64-bit widening warnings in headers.Neil1-2/+4
2022-02-16Bug [#2315] Fix undefined macros. Fixes key map for GTK on macOS and Haiku bu...Neil1-1/+1
2021-05-24Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.hNeil1-6/+5
2021-03-18std::optional is a basic vocabulary type that may be used widely so includeNeil1-0/+1
2021-03-18Move assert and debug trace functions into their own header Debugging.h.Neil1-2/+1
2021-03-17Extract geometry and colour definitions from Platform.h into src/Geometry.h.Neil1-0/+1
2019-01-06Bug [#2068]. Fix some clang-tidy warnings.Zufu Liu1-2/+2
2018-07-31Define PLAT_HAIKU and use to avoid a reported compilation problem on 32-bitNeil1-1/+1
2018-05-14Include <string_view> to allow future use in Platform interface and Unicode.Neil1-0/+1
2018-04-21Use noexcept in basic data structures where reasonable.Neil1-10/+10
2018-04-20Stop "duplicate explicit instantiation" error on g++ 32-bit where int andNeil1-0/+4
2018-04-17Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than 2 GigaBytes.Neil1-0/+2
2018-03-27Return a FillResult struct from RunStyles::FillRange instead of modifyingNeil1-8/+9
2018-03-09Use Position/Line/int more accurately in preparation for large documents.Neil1-0/+1
2018-03-01Use make_unique in preference to new.Neil1-4/+4
2018-02-01Templatize RunStyles so it can be over ranges of different types and containNeil1-48/+72
2018-02-01Templatize Partitioning so it can hold different types.Neil1-2/+2
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil1-2/+0
2017-05-21Make SplitVector work with move-only types like unique_ptr.Neil1-0/+1
2017-05-10Use unique_ptr fpr Partitioning, RunStyles, SparseVector, PositionCache andNeil1-12/+4
2017-04-22Include <memory> for std::unique_ptr.Neil1-0/+1
2017-04-06Added const where possible.Neil1-5/+5
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil1-4/+5
2015-07-27Add Position.h as a place-holder and to allow #include "Position.h" in source.Neil1-0/+1
2013-07-21Normalising order of language headers.Neil1-2/+2
2013-07-21Make compile with libc++ on OS X.Neil1-0/+1
2013-05-24Made methods const where they can be and are logically const as well.nyamatongwe1-4/+4
2013-04-15Existing code fills 0 length ranges and ranges after document end so simplynyamatongwe1-2/+2
2013-04-15RunStyles can be corrupted by filling 0 length ranges and ranges that go past...nyamatongwe1-0/+36
2012-09-12Fix bug where removing all characters from indicator at end of document didnyamatongwe1-0/+1
2011-06-07Add Find method on RunStyles.nyamatongwe1-0/+15
2011-06-07Fix bug with extra partition created when range filled.nyamatongwe1-0/+2
2011-06-07Add accessor to RunStyles for number of runs so Decoration can use public API.nyamatongwe1-1/+5
2011-06-07Make SCN_NEEDSHOWN notification work when word wrap is enabled.nyamatongwe1-0/+11
2010-12-30Avoid redraws when setting an indicator over positions where it is already set.nyamatongwe1-1/+3
2008-01-19Made som emethods const.nyamatongwe1-2/+2
2007-07-25Changed ContractionState data structure to be more efficient by not onlynyamatongwe1-0/+5
2007-06-12Fixed bug where setting the same range twice to the same value resultednyamatongwe1-7/+9
2007-06-09Fixed bug when setting a range where the start of the range was already anyamatongwe1-3/+5
2007-06-01integrate OS X support for scintilla. a big patch with a little commit messa...scaraveo1-0/+4
2007-04-19Optimized indicator changing with separate SC_MOD_CHANGEINDICATORnyamatongwe1-18/+27
2007-04-07More decoration code, with modifications reported from document to viewsnyamatongwe1-3/+10
2007-04-05New files that implement decorations.nyamatongwe1-0/+187