Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2021-07-17 | Updated dependencies. | Neil | 2 | -0/+2 | |
2021-07-06 | Feature [feature-requests:#1408] For DBCS on Win32, change WM_GETTEXTLENGTH and | Neil | 1 | -15/+45 | |
WM_GETTEXT to not use CountUTF16 or GetRelativePositionUTF16, instead using the Win32 API MultiByteToWideChar for consistency between reported length and text as UTF-16. | |||||
2021-07-03 | Remove remnants of support for including lexers in Scintilla. | Neil | 6 | -142/+7 | |
2021-06-25 | Feature [feature-requests:#1400] Set buffering when technology set. | Zufu Liu | 1 | -0/+1 | |
2021-06-18 | Updated for stable version 5.1.0. | Neil | 1 | -2/+2 | |
2021-06-17 | Add SciFnDirectStatus, a direct access function which also returns status so can | Neil | 1 | -2/+18 | |
improve performance for client code that called SCI_GETSTATUS after every API to check for failure. | |||||
2021-06-09 | Reduce casts by defining methods for common conversions. | Neil | 2 | -4/+4 | |
2021-06-05 | Bug [#2259]. Fix gcc link-time-optimization compilation. | Neil | 3 | -0/+4 | |
2021-05-29 | Updates for 5.0.3. | Neil | 1 | -2/+2 | |
2021-05-28 | Better exception handling for noexcept methods. More accurate noexcept marking. | Neil | 1 | -1/+6 | |
2021-05-28 | Merge init into ScintillaWin constructor as not called from anywhere else. | Neil | 2 | -30/+15 | |
Ensure variables initialised. Remove dead code. | |||||
2021-05-25 | Update dependencies. | Neil | 2 | -128/+126 | |
2021-05-24 | Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.h | Neil | 8 | -306/+323 | |
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. | |||||
2021-05-22 | Rename ColourAlpha to ColourRGBA to avoid clashes when a ColourAlpha typedef | Neil | 2 | -48/+48 | |
will be published in externally visible header. | |||||
2021-05-17 | Fix issues reported by Coverity and Visual C++ Analysis. | Neil | 2 | -21/+31 | |
Throw when (impossible) dynamic_cast failures occur as it isn't reasonable to recover. That removes 'noexcept' from some methods. Cast to avoid 'sub-expression overflow' warnings. Add default initializations and noexcept where safe. Move DropRenderTarget out of #if to avoid some preprocessor use. | |||||
2021-05-16 | Remove untenable noexcept as RGBAImageSet constructor can throw. | Neil | 1 | -1/+1 | |
2021-05-11 | Implement UpdateBaseElements on Win32 to update colours to match current system | Neil | 1 | -0/+21 | |
settings. Trigger UpdateBaseElements when system settings change. | |||||
2021-05-09 | Feature [feature-requests:1405]. Enable hardware-enforced stack protection in | Neil | 1 | -0/+1 | |
Visual C++ project file. | |||||
2021-05-08 | Feature [feature-requests:1405]. Enable hardware-enforced stack protection. | Neil | 1 | -2/+5 | |
2021-05-03 | Rename Opaque to WithoutAlpha as it returns a colour with 0 alpha. New Opaque | Neil | 1 | -2/+2 | |
method returns a colour with maximum (0xff) alpha. | |||||
2021-04-27 | Rename CharacterSet and CharacterCategory modules in Scintilla to CharacterType | Neil | 5 | -45/+45 | |
and CharacterCategoryMap to avoid clashes with Lexilla when building an executable that includes both. | |||||
2021-04-26 | Extract related groups of fields out of ViewStyle into new structs. | Neil | 1 | -2/+2 | |
Size of ViewStyle makes it more difficult to understand and this helps a bit. | |||||
2021-04-25 | Feature [feature-requests:#1402]. Unify colour type with ColourAlpha. | Neil | 2 | -24/+24 | |
Change ColourDesired to ColourAlpha in styles. Remove ColourDesired. | |||||
2021-04-21 | Updates for 5.0.2.rel-5-0-2 | Neil | 1 | -2/+2 | |
2021-04-20 | Avoid some warnings and make similar code more consistent. | Neil | 1 | -15/+8 | |
2021-04-20 | If text format creation fails, could be because of bad locale so try "en-us". | Neil | 1 | -0/+7 | |
2021-04-20 | Bug [#2246]. Fix encoding used for DirectWrite text display. | Neil | 1 | -5/+6 | |
2021-04-15 | Bug [#2228]. Ensure sysCaretBitmap does not leak. | Mat Berchtold | 1 | -1/+6 | |
2021-04-09 | Bug [#2243]. Fix crash when technology=2 (SC_TECHNOLOGY_DIRECTWRITERETAIN).rel-5-0-1 | Neil | 1 | -1/+1 | |
2021-04-07 | Feature [feature-requests:#1364]. Correct argument to TextWide for | Neil | 1 | -2/+2 | |
autocompletion lists. | |||||
2021-04-05 | Mark more destructors as noexcept. Delete unwanted LisboxX standard methods. | Neil | 1 | -13/+16 | |
2021-04-05 | Change CaseConversion to an enum class. | Neil | 1 | -3/+3 | |
2021-04-03 | Updates for 5.0.1. | Neil | 1 | -2/+2 | |
2021-03-31 | Feature [feature-requests:1393]. Optimization in SurfaceD2D::AverageCharWidth. | Zufu Liu | 1 | -1/+1 | |
2021-03-30 | Treat SC_MARK_CHARACTER as Unicode for a wider variety of symbols. | Neil | 2 | -2/+4 | |
2021-03-29 | Modify ListBox::GetValue to return a std::string to avoid fixed size buffers | Neil | 1 | -4/+3 | |
and the possibility of truncation. | |||||
2021-03-29 | Add SCI_SETELEMENTCOLOUR and related APIs to change colours of visible elements. | Neil | 2 | -10/+29 | |
Implement SC_ELEMENT_LIST* to change colours of autocompletion lists. | |||||
2021-03-26 | Add SC_SUPPORTS_PIXEL_MODIFICATION to differentiate character cell and | Neil | 1 | -1/+10 | |
pixel oriented platforms. | |||||
2021-03-26 | Bug [#2224]. Switch XYPOSITION to double so it has more precision to fix | Neil | 1 | -71/+91 | |
problems with very long documents. Fixes uneven line heights on Cocoa after around 1.1 million lines. | |||||
2021-03-26 | Simplify dwordMultiplied as only ever called for ColourAlpha. | Neil | 1 | -9/+9 | |
2021-03-22 | Minimize differences between SurfaceD2D::MeasureWidthsUTF8 and MeasureWidths. | Neil | 1 | -6/+6 | |
2021-03-25 | Remove old Surface methods that have been replaced. | Neil | 1 | -381/+1 | |
2021-03-22 | Implement more support values. | Neil | 1 | -0/+2 | |
2021-03-22 | Replace multiple mode setting calls on Surface with SetMode as this is | Neil | 1 | -3/+1 | |
extensible. For CallTip, GTK and Qt hardcode BidiR2L to false as they don't support bidirectional, its the same as current, and the BidiR2L state on EditModel isn't easily accessible. | |||||
2021-03-22 | Use PolyLine to simplify wrap marker arrows and allow thicker strokes when there | Neil | 2 | -2/+0 | |
is space. | |||||
2021-03-22 | Replace multiple calls when drawing boxes with Surface::RectangleFrame. | Neil | 2 | -2/+0 | |
Replace annotation boxing logic with calls to FillRectangle and Side. Switch to new AlphaRectangle signature. These will allow changing stroke width in future. | |||||
2021-03-20 | Replace FillRectangle with FillRectangleAligned as FillRectangle will stop | Neil | 1 | -4/+4 | |
aligning to pixel boundaries. Use Surface::SetMode as simpler and its predecessors will be removed. | |||||
2021-03-20 | Update CallTip with new Surface APIs. | Neil | 2 | -2/+0 | |
2021-03-20 | Use new Surface APIs for marker drawing. Clipping allows rounded fold markers to | Neil | 2 | -2/+0 | |
be highlighted better. | |||||
2021-03-20 | Use new Surface APIs that can adapt to different stroke widths and use clipping | Neil | 2 | -2/+0 | |
to allow more accurate less complex drawing code. |