Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2022-07-29 | Apply rule-of-zero to delete standard methods where possible as handled by | Neil | 1 | -6/+0 | |
contained types. This allows flexibility as most lower-level data types can be moved and SplitVector and Partitioning of non-move-only types may be copied. CellBuffer still needs destructor due to incomplete type so retains all standard operations. | |||||
2022-07-29 | Flatten Partitioning and RunStyles to avoid a level of indirection by containing | Neil | 1 | -2/+2 | |
SplitVector and Partitioning directly instead of using std::unique_ptr. This will enable more value semantics and reduces potential memory allocation failure scenarios. | |||||
2021-05-24 | Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h | Neil | 1 | -1/+1 | |
and ScintillaStructures.h using scoped enumerations. Use these headers instead of Scintilla.h internally. External definitions go in the Scintilla namespace and internal definitio0ns in Scintilla::Internal. | |||||
2018-04-21 | Use noexcept in basic data structures where reasonable. | Neil | 1 | -10/+12 | |
Declare the standard member functions in more classes | |||||
2018-03-27 | Return a FillResult struct from RunStyles::FillRange instead of modifying | Neil | 1 | -2/+12 | |
arguments as that is clumsy when converting types. | |||||
2018-02-01 | Templatize RunStyles so it can be over ranges of different types and contain | Neil | 1 | -19/+20 | |
different style types. Currently only instantiated over <int, int>. | |||||
2018-02-01 | Templatize Partitioning so it can hold different types. | Neil | 1 | -1/+1 | |
2017-09-11 | The Scintilla namespace is always active for internal symbols and for the lexer | Neil | 1 | -4/+0 | |
interfaces ILexer4 and IDocument. | |||||
2017-05-10 | Use unique_ptr fpr Partitioning, RunStyles, SparseVector, PositionCache and | Neil | 1 | -2/+2 | |
Document. | |||||
2017-04-21 | More consistent deletion of standard methods. | Neil | 1 | -1/+2 | |
2017-04-19 | Use =delete for unwanted functions. | Neil | 1 | -2/+2 | |
2013-05-24 | Made methods const where they can be and are logically const as well. | nyamatongwe | 1 | -4/+4 | |
2013-04-15 | RunStyles can be corrupted by filling 0 length ranges and ranges that go ↵ | nyamatongwe | 1 | -0/+2 | |
past end so throw std::invalid_argument exceptions for these conditions. Provide a Check method to validate the consistency of a RunStyles and throw std::runtime_error if corruption is detected. | |||||
2013-01-19 | Add private copy constructors to prevent copying and avoid warnings. | nyamatongwe | 1 | -0/+2 | |
2011-06-07 | Add Find method on RunStyles. | nyamatongwe | 1 | -0/+1 | |
2011-06-07 | Add accessor to RunStyles for number of runs so Decoration can use public API. | nyamatongwe | 1 | -2/+3 | |
Make RunStyles internal methods private. RunFromPosition is const so marker as const. | |||||
2011-06-07 | Make SCN_NEEDSHOWN notification work when word wrap is enabled. | nyamatongwe | 1 | -0/+2 | |
This fixes the last remaining issue from bug #3291579. From Marko Njezic | |||||
2008-05-17 | Added include guard. | nyamatongwe | 1 | -0/+5 | |
2008-01-19 | Made som emethods const. | nyamatongwe | 1 | -2/+2 | |
2007-07-25 | Changed ContractionState data structure to be more efficient by not only | nyamatongwe | 1 | -0/+1 | |
modifying data near an insertion or deletion when there is good locality of modification. | |||||
2007-06-01 | integrate OS X support for scintilla. a big patch with a little commit ↵ | scaraveo | 1 | -0/+8 | |
message :) - now uses namespaces (optionally for non-os x) to avoid conflicts with OS X libraries - several fixes in the OS X layer since the branch was commited in 2005 - used in Komodo since 2005, so pretty stable | |||||
2007-04-19 | Optimized indicator changing with separate SC_MOD_CHANGEINDICATOR | nyamatongwe | 1 | -2/+2 | |
notification flag. | |||||
2007-04-07 | More decoration code, with modifications reported from document to views | nyamatongwe | 1 | -1/+2 | |
although this isn't optimal. Some checking for null changes. Messages documented. Methods for changing indicators in Accessor so can be used by lexers. | |||||
2007-04-05 | New files that implement decorations. | nyamatongwe | 1 | -0/+31 | |