aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Document.cxx
AgeCommit message (Expand)AuthorFilesLines
2018-05-03Specify type of std::clamp to avoid casting arguments.Neil1-1/+1
2018-04-26Use <chrono> for platform-independent timing and remove ElapsedTime.Neil1-4/+6
2018-04-22Remove casts between char and unsigned char where possible.Neil1-7/+7
2018-04-21Tighten definition of regular expression iterators so they are noexcept andNeil1-69/+96
2018-04-19Casting changed in many places, due to change to 64-bit variables for 64-bitNeil1-93/+96
2018-04-19Remove casts by using harmonized types. Drop NUL termination that is not needed.Neil1-16/+13
2018-04-17Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than 2 GigaBytes.Neil1-2/+7
2018-03-28Templatize decorations to allow 32-bit or 64-bit positions.Neil1-1/+1
2018-04-16Determine if line start or end pattern before loop.Neil1-5/+7
2018-04-13Use 'override' for methods that are overridden.Neil1-28/+28
2018-04-13Fix bug with regular expression searches failing to match at line start or end.Neil1-16/+4
2018-04-11Remove workaround for problems with noexcept.Neil1-10/+2
2018-03-28Split decorations into interface and implementation.Neil1-4/+6
2018-03-27Return a FillResult struct from RunStyles::FillRange instead of modifyingNeil1-4/+4
2018-03-24Feature [feature-requests:#1212]. Move Unicode conversions into UniConversion.Zufu Liu1-1/+0
2018-03-22Feature [feature-requests:#1211]. Use pre-computed table for UTF8BytesOfLead.Zufu Liu1-2/+0
2018-03-09Use Position/Line/int more accurately in preparation for large documents.Neil1-6/+6
2018-03-01Mark variables as const where simple.Neil1-49/+49
2018-03-01Use make_unique in preference to new.Neil1-5/+5
2018-02-02Implement SC_DOCUMENTOPTION_STYLES_NONE.Neil1-1/+2
2018-01-28Replace Sci::clamp with C++ standard std::clamp function.Neil1-1/+1
2018-01-28Use std::abs in preference to abs as std::abs is generic and abs casts to intNeil1-1/+2
2017-12-13Use explicit typedefs instead of deprecated derivation from std::iterator.Greg Smith1-3/+21
2017-10-16Use const for interface CharacterIndexer and its implementation DocumentIndexer.Neil1-3/+3
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil1-12/+0
2017-08-28New header ILoader.h defines ILoader interface as it does not belong in ILexe...Neil1-0/+1
2017-06-22Merge Ilexer and ILexerWithSubStyles into ILexer4 to avoid need for versionNeil1-5/+1
2017-07-09Bug [#1955]. The data parameter to ILoader::AddData made const.Justin Dailey1-1/+1
2017-06-22Update IDocument for version 4. Drop IDocumentWithLineEnd interface to just haveNeil1-2/+2
2017-06-22Cast between Sci_Position.h types used for lexers and Position.h types used inNeil1-72/+83
2017-06-19The default encoding is now UTF-8.Neil1-1/+1
2017-06-12Removed unused functions and methods from Platform.h.Neil1-1/+1
2017-05-21Use unique_ptr and forward_list to regularize PerLine data structures.Neil1-0/+1
2017-05-10Use unique_ptr fpr Partitioning, RunStyles, SparseVector, PositionCache andNeil1-43/+58
2017-05-02More consistent use of size_t when converting Unicode formats.Neil1-1/+1
2017-04-29Use std::unique_ptr, std::vector, and move construction to simplify UndoHistoryNeil1-3/+3
2017-04-22Using unique_ptr to simplify ownership of images, case folder, and list box.Neil1-9/+3
2017-04-22Encapsulate the LexInterface of Document.Neil1-4/+8
2017-04-09Further use of range-for.Neil1-24/+24
2017-04-06Added const where possible.Neil1-47/+47
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil1-5/+5
2017-03-31Prefer standard min/max over Platform's as adapts to changed types.Neil1-3/+3
2017-03-31Hide decorations details a little.Neil1-0/+4
2017-03-31Using Sci::Position and Sci::Line to mark variables that are document positionsNeil1-215/+215
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.Vicente1-3/+3
2017-03-04Use C++11 keyword "override" for methods that override a base class.Neil1-6/+6
2017-01-22Remove extraneous "void".Neil1-1/+1
2016-11-07Specify 'noexcept' to use Clang with GNU <regex>.Neil1-2/+10
2016-10-06Word selection, navigation, and manipulation is now performed on charactersNeil1-118/+344