aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/EditView.cxx
AgeCommit message (Expand)AuthorFilesLines
2021-05-05Hoist selection text colour into SelectionForeground function and whetherNeil1-25/+34
2021-05-01Improve selection drawing code. Use InSelection enum instead of int.Neil1-54/+65
2021-04-27Rename CharacterSet and CharacterCategory modules in Scintilla to CharacterTypeNeil1-2/+2
2021-04-26Avoid some warnings.Neil1-4/+5
2021-04-26Change std::optional value() to * as value() is not implemented in older macOSNeil Hodgson1-18/+18
2021-04-26Extract related groups of fields out of ViewStyle into new structs.Neil1-58/+58
2021-04-25Feature [feature-requests:#1402]. Unify colour type with ColourAlpha.Neil1-83/+84
2021-04-05Extract unnamed caching enum as LineLayoutCache::Cache and change to enum class.Neil1-1/+1
2021-04-05Change IndentView, WhiteSpaceVisibility, and TabDrawMode to enum class.Neil1-11/+11
2021-04-01Changed parameters for DrawTabArrow and DrawTabArrowFn to allow additionalNeil1-8/+7
2021-03-29Add SCI_SETELEMENTCOLOUR and related APIs to change colours of visible elements.Neil1-0/+1
2021-03-28Add shapes with curved and rounded ends to EOL annotations as EOLANNOTATION_*.Neil1-16/+73
2021-03-26Minor changes: const, constexpr, and noexcept.Neil1-2/+2
2021-03-22Use XYPOSITION for xStart parameter as it is only passed as XYPOSITION.Neil1-2/+2
2021-03-22Replace multiple calls when drawing boxes with Surface::RectangleFrame.Neil1-32/+9
2021-03-21Update DrawTabArrow with new Surface calls so it can draw a thicker translucentNeil1-16/+25
2021-03-20Replace FillRectangle with FillRectangleAligned as FillRectangle will stopNeil1-50/+49
2021-03-20Use Surface::AllocatePixMap instead of changing an existing surface withNeil1-26/+8
2021-03-19Add an explicit FlushDrawing method to Surface that should be called afterNeil1-0/+3
2021-03-19Implement PopClip to allow local clipping.Neil1-1/+6
2021-03-19Switch enum to enum class.Neil1-50/+51
2021-03-18Make Surface::Release and callers (where possible) noexcept.Neil1-1/+1
2021-03-18Use unique_ptr for Surface::Allocate to show transfer of ownership.Neil1-3/+3
2021-03-18std::optional is a basic vocabulary type that may be used widely so includeNeil1-0/+1
2021-03-18Move assert and debug trace functions into their own header Debugging.h.Neil1-0/+1
2021-03-17Change Font to an interface and stop using FontID. Fonts are shared andNeil1-15/+15
2021-03-17Extract geometry and colour definitions from Platform.h into src/Geometry.h.Neil1-0/+1
2021-02-02Bug [#2231]. Inconsistent behaviour in navigation on a line containing Japanesecshnik1-1/+1
2020-08-27Bug [#2197]. Avoid rewrap when checkTextAndStyle finds unchanged from cache.Zufu Liu1-5/+4
2020-08-26Bug [#2199]. Fixed bug where a hovered INDIC_TEXTFORE indicator was not applyinguhf71-3/+6
2020-08-21Reduce code and variable lifetime.Zufu Liu1-6/+3
2020-08-21Bug [#2197]. Fixed bug where layout caching was ineffective.Neil1-1/+2
2020-07-16Make WrapMode an enum class for more type safety.Neil1-4/+4
2020-07-16Rename validLevel to ValidLevel and make an enum class.Neil1-8/+8
2020-07-16Add some const, constexpr.Neil1-1/+1
2020-07-11Removed calls that had no effect as drawing in indent guides uses FillRectangleNeil1-2/+0
2020-07-11Treat DEL as a control character for determining block caret size.Zufu Liu1-5/+6
2020-06-12Bug [#2141]. Implement end of line annotations.Prakash Sahni1-1/+93
2020-06-11Use noexcept where safe and maintainable.Neil1-3/+3
2020-06-10Convert enum to enum class. Add noexcept and const.Neil1-6/+6
2020-03-26Fix spelling mistakes.Neil1-1/+1
2020-03-19Minor improvements - noexcept, constexpr, cast removal.Neil1-10/+8
2020-03-19Feature [feature-requests:1302] Simplify DrawCarets.Zufu Liu1-5/+4
2020-03-19Feature [feature-requests:1302] Add IsCaretVisible to simplify DrawCarets.Zufu Liu1-1/+1
2019-06-21Bug [#2106]. Place line caret in correct location for line caret with block OVR.Neil1-1/+3
2019-05-11Feature [feature-requests:#1283]. Standardise spelling - "color" -> "colour".Neil1-1/+1
2019-04-26Feature [feature-requests:#1238]. Simplify case forcing with CaseForce functionNeil1-29/+35
2019-04-26Feature [feature-requests:#1238]. Simplify camel case forcing by checking onlyNeil1-4/+4
2019-04-25Bug [#1238]. Removed redundant loop.Zufu Liu1-4/+0
2019-04-05Feature [feature-requests:#1272]. Add API to set default fold display text.Neil1-3/+4