| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2021-03-29 | Add SCI_SETELEMENTCOLOUR and related APIs to change colours of visible elements. | Neil | 1 | -0/+1 | |
| Implement SC_ELEMENT_LIST* to change colours of autocompletion lists. | |||||
| 2021-03-26 | Minor changes: const, constexpr, and noexcept. | Neil | 1 | -2/+2 | |
| 2021-03-22 | Use PolyLine to simplify wrap marker arrows and allow thicker strokes when there | Neil | 1 | -28/+32 | |
| is space. | |||||
| 2021-03-20 | Use Surface::AllocatePixMap instead of changing an existing surface with | Neil | 1 | -26/+8 | |
| InitPixMap. Changed DropGraphics from releasing surfaces to deleting them. This simplifies code and the added cost of allocating a new Surface is small. | |||||
| 2021-03-19 | Add an explicit FlushDrawing method to Surface that should be called after | Neil | 1 | -0/+2 | |
| completing a bitmap. Currently only has a real implementation on Direct2D. Avoiding implicit flushes inside Copy and FillRectangle produced a 23% speed improvement on files with about 1 indentation guide per line as the drawing pipeline was being flushed for each indentation guide. | |||||
| 2021-03-19 | Switch enum to enum class. | Neil | 1 | -2/+2 | |
| 2021-03-18 | Make Surface::Release and callers (where possible) noexcept. | Neil | 1 | -1/+1 | |
| 2021-03-18 | Use unique_ptr for Surface::Allocate to show transfer of ownership. | Neil | 1 | -3/+3 | |
| 2021-03-18 | std::optional is a basic vocabulary type that may be used widely so include | Neil | 1 | -0/+1 | |
| almost everywhere. | |||||
| 2021-03-18 | Move assert and debug trace functions into their own header Debugging.h. | Neil | 1 | -0/+1 | |
| PLATFORM_ASSERT is used in data structure headers which led to including graphics and windowing APIs in data structure modules. | |||||
| 2021-03-17 | Change Font to an interface and stop using FontID. Fonts are shared and | Neil | 1 | -1/+1 | |
| reference counted using std::shared_ptr. This optimizes memory and reduces potential for allocation bugs. | |||||
| 2021-03-17 | Extract geometry and colour definitions from Platform.h into src/Geometry.h. | Neil | 1 | -0/+1 | |
| 2020-07-28 | Fix position of marker symbols for SC_MARGIN_RTEXT which were being moved based | Neil | 1 | -5/+8 | |
| on width of text. | |||||
| 2020-07-16 | Rename typeOfFold to FoldPart and make an enum class. | Neil | 1 | -7/+7 | |
| 2020-06-11 | Use noexcept where safe and maintainable. | Neil | 1 | -1/+1 | |
| 2019-07-02 | Bug [#2115]. Backed out changeset: 74b2c724a1df as not undefined behaviour. | Neil | 1 | -2/+2 | |
| 2019-07-01 | Bug [#2115]. Fix undefined behaviour of shifting signed 1 by 31. | Zufu Liu | 1 | -2/+2 | |
| 2019-05-11 | Feature [feature-requests:#1283]. Standardise spelling - "color" -> "colour". | Neil | 1 | -1/+1 | |
| 2019-03-29 | Include "CharacterCategory.h" in all files that include "Document.h" as it will | Neil | 1 | -0/+1 | |
| be needed for adding a CharacterCategory feature. | |||||
| 2019-03-03 | Use noexcept where reasonable. | Neil | 1 | -1/+1 | |
| 2019-01-13 | Replace the only use of a function from <cctype> with a Scintilla function. | Neil | 1 | -1/+0 | |
| Remove inclusion of <cctype> except in lexers as cctype functions often behave poorly and may crash for out of bounds arguments. | |||||
| 2018-05-15 | Replace ELEMENTS with std::size and drop inclusion of StringCopy.h. | Neil | 1 | -1/+0 | |
| 2018-05-14 | Modernize Platform.h (4) - update Surface to use string_view for text arguments. | Neil | 1 | -2/+2 | |
| 2018-05-14 | Include <string_view> to allow future use in Platform interface and Unicode. | Neil | 1 | -0/+1 | |
| 2018-05-01 | Add IntegerRectangle to simplify drawing lines without casting. | Neil | 1 | -5/+8 | |
| 2018-04-27 | Use nullptr for custom draw functions. | Neil | 1 | -2/+2 | |
| 2018-04-19 | Casting changed in many places, due to change to 64-bit variables for 64-bit | Neil | 1 | -1/+1 | |
| builds. Some of the changes ensure no truncation while others remove casts that are no longer needed because the externally visible Sci_Position is now identical to Sci::Position. Some extra methods (CellBuffer::UCharAt and Document::SciLineFromPosition) added to avoid casting in client code. Sci::Line is currently identical to Sci::Position but it could be made smaller so lines have Sci::Line types and are cast. Some arguments widened. | |||||
| 2018-04-17 | Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than 2 GigaBytes. | Neil | 1 | -5/+8 | |
| This option is provisional and experimental. | |||||
| 2018-03-27 | Use an interface for ContractionState so that there can be different | Neil | 1 | -14/+14 | |
| implementations of that interface. | |||||
| 2018-03-15 | Use forward class definitions of XPM and RGBAImage so only code that uses them | Neil | 1 | -1/+0 | |
| needs to #include "XPM.h". Move definition of standard methods on LineMarker from header to implementation to reduce included text and further isolate use of XPM and RGBAImage. | |||||
| 2018-03-01 | Mark variables as const where simple. | Neil | 1 | -10/+10 | |
| 2017-09-11 | The Scintilla namespace is always active for internal symbols and for the lexer | Neil | 1 | -6/+0 | |
| interfaces ILexer4 and IDocument. | |||||
| 2017-08-28 | New header ILoader.h defines ILoader interface as it does not belong in ↵ | Neil | 1 | -0/+1 | |
| ILexer.h. | |||||
| 2017-06-22 | Cast between Sci_Position.h types used for lexers and Position.h types used in | Neil | 1 | -1/+2 | |
| core to allow the Sci_Position.h types to widen to 64-bits. | |||||
| 2017-05-21 | Make SparseVector work with move-only types. | Neil | 1 | -0/+1 | |
| Define UniqueString as a move-only string and use in a SparseVector for ContractionState. Remove SparseVector method specializations that are no longer needed. | |||||
| 2017-05-02 | Use unique_ptr for drawing surfaces and don't check for allocation failure | Neil | 1 | -12/+6 | |
| as that throws an exception. Also use unique_ptr for tab stop positions. | |||||
| 2017-04-06 | Added const where possible. | Neil | 1 | -7/+7 | |
| 2017-04-01 | Standardize on C++ headers, remove headers that aren't needed and add <cstddef> | Neil | 1 | -6/+7 | |
| where it may be needed in the future. | |||||
| 2017-03-31 | Using Sci::Position and Sci::Line to mark variables that are document positions | Neil | 1 | -9/+9 | |
| and lines. | |||||
| 2016-09-29 | The number of margins can be changed with SCI_SETMARGINS. | Neil | 1 | -1/+1 | |
| 2016-09-29 | Margin type SC_MARGIN_COLOUR and API SCI_SETMARGINBACKN added. | Neil | 1 | -0/+3 | |
| Allows choosing any colour for a margin. | |||||
| 2016-01-31 | Replace expressions to find level number of a fold level with function call. | Neil | 1 | -5/+5 | |
| Simplifies code by removing any precedence issues and is shorter. | |||||
| 2015-07-27 | Add Position.h as a place-holder and to allow #include "Position.h" in source. | Neil | 1 | -0/+1 | |
| 2014-12-16 | When a text margin is displayed, for annotation lines, use the background colour | Neil | 1 | -5/+13 | |
| of the base line. From Joe Mueller. | |||||
| 2014-11-19 | Platform overrides for some drawing and behaviour to benefit PLAT_CURSES. | Neil | 1 | -2/+8 | |
| From Mitchell Foral. | |||||
| 2014-10-02 | Include <stdexcept> so that exceptions derived from std::runtime_error can be | Neil | 1 | -0/+1 | |
| used. | |||||
| 2014-07-18 | Allow extreme ascenders and descenders to overlap into adjacent lines with | Neil | 1 | -89/+3 | |
| multiple phase drawing option. | |||||
| 2014-07-08 | Made recent refactor work on Cocoa. | Neil Hodgson | 1 | -0/+9 | |
| 2014-07-08 | Split out EditModel, MarginView, and EditView classes into separate files. | Neil | 1 | -0/+532 | |
