Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2019-06-21 | Bug [#2106]. Place line caret in correct location for line caret with block OVR. | Neil | 1 | -1/+3 | |
That is for CARETSTYLE_LINE | CARETSTYLE_BLOCK mode. | |||||
2019-05-11 | Feature [feature-requests:#1283]. Standardise spelling - "color" -> "colour". | Neil | 1 | -1/+1 | |
2019-04-26 | Feature [feature-requests:#1238]. Simplify case forcing with CaseForce function | Neil | 1 | -29/+35 | |
that hoists the repeated logic out of the 2 loops that check or set the cached visual line text. | |||||
2019-04-26 | Feature [feature-requests:#1238]. Simplify camel case forcing by checking only | Neil | 1 | -4/+4 | |
for upper and lower case characters instead of current word characters. This changes behaviour for words like "_word" -> "_Word" instead of remaining "_word" but that doesn't matter for this feature's intended use which is to allow display of ASCII-only keywords in the user's preferred casing (else/ELSE/Else) for languages with case-insensitive keywords. | |||||
2019-04-25 | Bug [#1238]. Removed redundant loop. | Zufu Liu | 1 | -4/+0 | |
2019-04-05 | Feature [feature-requests:#1272]. Add API to set default fold display text. | Neil | 1 | -3/+4 | |
2019-04-02 | Removed variable which duplicated meaning of earlier variable. | Neil | 1 | -3/+2 | |
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-25 | Use generic versions of ceil, floor, round, lround, trunc from <cmath>. | Neil | 1 | -9/+9 | |
2019-03-03 | Use noexcept where reasonable. | Neil | 1 | -8/+8 | |
2019-02-05 | Feature [feature-requests:#1217]. Change API so block just for overstrike. | Zufu Liu | 1 | -5/+6 | |
2019-02-02 | Feature [feature-requests:#1217]. Implement CARETSTYLE_BLOCK_ALWAYS. | Zufu Liu | 1 | -3/+3 | |
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. | |||||
2019-01-06 | Bug [#2068]. Fix some clang-tidy warnings. | Zufu Liu | 1 | -1/+1 | |
2018-06-06 | Added brace for multi-line if and normalized space. | Neil | 1 | -6/+7 | |
2018-06-06 | SC_WRAPINDENT_DEEPINDENT added to indent two tabs from previous line. | Henrik Hank | 1 | -3/+9 | |
2018-06-02 | Make virtual space selections visible in bidirectional mode. | Neil | 1 | -1/+10 | |
2018-06-02 | Define IScreenLineLayout as the main interface for implementing bidirectional | Neil | 1 | -5/+10 | |
features by platform code. Implement IScreenLineLayout for Win32 / DirectWrite as ScreenLineLayout. | |||||
2018-05-24 | Fix warnings. Add const, constexpr, and noexcept. Initialize. Standard methods. | Neil | 1 | -13/+13 | |
Replace 0 and NULL with nullptr for COM, DirectWrite and least ambiguous cases. | |||||
2018-05-23 | Implement bidirectional mode bidiL2R for DirectDraw on Win32. | Neil | 1 | -37/+163 | |
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 | -31/+28 | |
2018-05-14 | Include <string_view> to allow future use in Platform interface and Unicode. | Neil | 1 | -0/+1 | |
2018-05-13 | When line end characters are displayed, indicators are drawn under/over them. | Neil | 1 | -6/+7 | |
2018-05-01 | Add IntegerRectangle to simplify drawing lines without casting. | Neil | 1 | -24/+28 | |
2018-04-27 | Use nullptr for custom draw functions. | Neil | 1 | -7/+8 | |
2018-04-26 | Specify concrete class for ldTabstops and use directly instead of copying value | Neil | 1 | -7/+4 | |
of .get() before use. | |||||
2018-04-26 | Use <chrono> for platform-independent timing and remove ElapsedTime. | Neil | 1 | -19/+30 | |
Also use #if for painting measurement as there are 7 sections of code to enable. | |||||
2018-04-20 | More const and cast avoidance. | Neil | 1 | -5/+6 | |
2018-04-20 | Mark pointer to constant parameter as const. | Neil | 1 | -1/+1 | |
2018-04-20 | Feature [feature-requests:#1215]. Use standard functions in prference to | Neil | 1 | -4/+4 | |
RoundXYPosition, XYMinimum, and XYMaximum. | |||||
2018-04-20 | Avoid casts for DrawIndentGuide. | Neil | 1 | -6/+6 | |
2018-04-19 | Templatize MakeUpperCase/MakeLowerCase so they work on char/int without casts. | Neil | 1 | -4/+4 | |
2018-04-19 | Use ColourDesired constructor explicitly to make more obvious. | Neil | 1 | -1/+1 | |
Constructor not marked explicit as may be used in external platform layers. | |||||
2018-04-19 | Casting changed in many places, due to change to 64-bit variables for 64-bit | Neil | 1 | -44/+44 | |
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-19 | SC_PRINT_SCREENCOLOURS doesn't force the background colour of line numbers ↵ | Nicholai Benalal | 1 | -2/+3 | |
white. | |||||
2018-04-17 | Add SC_DOCUMENTOPTION_TEXT_LARGE option for documents larger than 2 GigaBytes. | Neil | 1 | -4/+3 | |
This option is provisional and experimental. | |||||
2018-04-05 | Backed out changeset: 7402342dc7a3 Caching client rectangle on EditView. | Neil | 1 | -8/+0 | |
This change was not compatible with Cocoa as it uses document-based coordinates rather than view-based. | |||||
2018-04-04 | Cache client rectangle on EditView so it can be used easily inside EditView. | Neil | 1 | -0/+8 | |
2018-03-28 | Split decorations into interface and implementation. | Neil | 1 | -10/+10 | |
2018-03-27 | Use an interface for ContractionState so that there can be different | Neil | 1 | -15/+15 | |
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-09 | Use Position/Line/int more accurately in preparation for large documents. | Neil | 1 | -22/+24 | |
2018-03-01 | Mark variables as const where simple. | Neil | 1 | -46/+46 | |
2018-03-01 | Use make_unique in preference to new. | Neil | 1 | -1/+1 | |
From Effective Modern C++ Item 21. | |||||
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 | -41/+49 | |
core to allow the Sci_Position.h types to widen to 64-bits. | |||||
2017-05-21 | Use unique_ptr and forward_list to regularize PerLine data structures. | Neil | 1 | -0/+1 | |
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. |