Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
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. | |||||
2021-03-20 | Use Surface::AllocatePixMap instead of changing an existing surface with | Neil | 1 | -3/+3 | |
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-25 | Translucent text. | Neil | 1 | -78/+51 | |
2021-03-20 | Add AllocatePixMap method on Surface to create a pixmap surface. | Neil | 1 | -12/+55 | |
2021-03-20 | Use SurfaceMode struct as a way to inform Surface of modes like code page and | Neil | 1 | -37/+42 | |
bidirectional options in an extensible way instead of adding a call for each element. | |||||
2021-03-25 | Add FillRectangleAligned to align rectangle to pixel grid on x-axis before | Neil | 1 | -0/+10 | |
filling it to avoid partially drawn pixels on left and right edges. | |||||
2021-03-20 | Implement LineDraw and PolyLine. | Neil | 1 | -0/+79 | |
2021-03-20 | Implement Stadium on all platforms except for Win32 GDI. | Neil | 1 | -0/+103 | |
2021-03-20 | Implement RectangleFrame. | Neil | 1 | -0/+18 | |
2021-03-25 | Use FillStroke for parameters to Polygon, RectangleDraw, RoundedRectangle, and | Neil | 1 | -6/+150 | |
Ellipse. | |||||
2021-03-19 | Support strokeWidth and float cornerSize in AlphaRectangle. Use FillStroke | Neil | 1 | -0/+87 | |
instead of separate colour and alpha arguments. | |||||
2021-03-25 | Implement translucent FillRectangle. | Neil | 1 | -19/+39 | |
2021-03-19 | UTF-8 text drawing and measurement. | Neil | 1 | -34/+259 | |
Move SurfaceGDI::WidthText to match declaration order. | |||||
2021-03-19 | Add an explicit FlushDrawing method to Surface that should be called after | Neil | 1 | -13/+12 | |
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 | Implement PopClip to allow local clipping. | Neil | 1 | -0/+15 | |
2021-03-19 | Add Surface::PixelDivisions which detects 'retina' displays that use | Neil | 1 | -0/+12 | |
multiple display pixels per logical pixel. Likely will only return >1 for Apple displays. Can be used for finer placement of elements. | |||||
2021-03-19 | Add Platform::Supports for SupportsFeature API. | Neil | 3 | -0/+23 | |
2021-03-19 | Add Geometry.cxx for geometric and colour operations too complex for headers. | Neil | 4 | -0/+8 | |
Add FillStroke to hold parameters for drawing shapes. |