aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
AgeCommit message (Expand)AuthorFilesLines
2021-11-12Change SCI_GETTEXT, SCI_GETSELTEXT, and SCI_GETCURLINE to be more consistentNeil1-15/+8
2021-11-10Call ConstCharPtrFromSPtr when result should be const.Neil1-23/+23
2021-10-22Add CARETSTYLE_CURSES to draw more than 1 caret on curses terminal.Mitchell Foral1-1/+1
2021-10-12Feature [feature-requests:#1416] Use range for.Neil1-3/+3
2021-10-05Feature [feature-requests:#1417] Consolidate character classification functionsNeil1-2/+2
2021-09-28Widen styleNumber in PositionCacheEntry from 8 to 16 bits to allow stylesNeil1-0/+1
2021-09-15Avoid some type warningsNeil1-1/+1
2021-08-27Feature [feature-requests:#841] Remove hotspot from LineLayout and rely onZufu Liu1-4/+0
2021-08-25Allow SCI_HIDELINES to hide the first line or all lines.Neil1-2/+1
2021-08-24Feature [feature-requests:#841] SCI_SETCARETLINEHIGHLIGHTSUBLINE enablesZufu Liu1-0/+7
2021-08-23Fix change set 8902 which could cause caret to stop blinking.Neil1-3/+3
2021-08-14Optimize by reducing invalidation as this can be costly.Neil1-0/+18
2021-07-31Implement StyleSetCheckMonospaced.Neil1-1/+8
2021-07-15Feature [feature-requests:#1370] Implement SCI_ALLOCATELINES to allocate indicesZufu Liu1-0/+4
2021-07-03Feature [feature-requests:#1408] Merge branches for setting representations forZufu Liu1-14/+7
2021-07-03Feature [feature-requests:#1408] Avoid sprintf for hexadecimal character blobs.Zufu Liu1-4/+4
2021-06-10Rename SCI_PASTERECTANGULAR to SCI_REPLACERECTANGULAR as it is inserting textNeil1-1/+1
2021-06-09Reduce casts by defining methods for common conversions.Neil1-161/+157
2021-06-09Add SCI_PASTERECTANGULAR to insert text like a rectangular paste.Mitchell Foral1-0/+9
2021-06-03Add APIs for setting appearance (traditional blob or plain text) and colour ofNeil1-2/+31
2021-06-04Bug [#2260]. Fix bug with SCI_GETLASTCHILD when lParam is -1.Zufu Liu1-2/+2
2021-05-30Fix GetFontQuality. Simplify code that calls FlagSet.Neil1-15/+15
2021-05-28Rename 'NO_FOCUS' to 'INACTIVE' to better match platform terms.Neil1-1/+1
2021-05-24Define C++ version of the Scintilla API in ScintillaTypes.h, ScintillaMessages.hNeil1-1545/+1565
2021-05-22Rename ColourAlpha to ColourRGBA to avoid clashes when a ColourAlpha typedefNeil1-23/+23
2021-05-20Prefer Sci::invalidPosition to INVALID_POSITION as Scintilla.h will eventuallyNeil1-21/+21
2021-05-20Add LevelIsHeader and LevelIsWhitespace as fold levels will become enum classNeil1-14/+14
2021-05-16Include modifiers in SCN_INDICATORRELEASE notification.Damiano Lombardi1-1/+1
2021-05-15Protect against out-of-bounds layout cache level and remove unnecessary code.Neil1-1/+3
2021-05-15Bug [#2253]. For SCI_SETSELALPHA, also update the alpha of secondary and no-f...Neil Hodgson1-2/+5
2021-05-14Do not set alpha of SC_ELEMENT_CARET_LINE_BACK unless already has a colour.Neil1-1/+3
2021-05-14Add elements for hot spots SC_ELEMENT_HOT_SPOT_ACTIVE andNeil1-6/+8
2021-05-14Add SC_ELEMENT_WHITE_SPACE_BACK to set the background colour of visibleNeil1-2/+3
2021-05-14Feature [feature-requests:#1402] Add SC_ELEMENT_WHITE_SPACE to set the colour ofYX Hao1-3/+4
2021-05-14Add SCI_MARKERSETLAYER to define layer on which to draw content area markers.Neil1-3/+19
2021-05-12Switch caret line background colour to SC_ELEMENT_CARET_LINE_BACK element andNeil1-10/+40
2021-05-11When setting or resetting elements, redraw if caused change.Neil1-2/+6
2021-05-11Implement SCI_GETELEMENTBASECOLOUR to return the default values for elementNeil1-0/+3
2021-05-11Add tests for element APIs. Fix SCI_GETELEMENTCOLOUR to return value includingNeil1-1/+1
2021-05-10Change the way that selections and carets are drawn to use the element APIs.Neil1-17/+43
2021-05-10Add elementBaseColours to hold default or system derived colours.Neil1-1/+5
2021-05-07Use shared_ptr for LineLayoutCache as it simpifies lifetime management.Neil1-8/+8
2021-05-07Add lineNumber_ argument to LineLayout constructor so always knows which line itNeil1-4/+4
2021-05-08Feature [feature-requests:1373]. Make idle actions smoother by measuringNeil1-14/+20
2021-05-05Redraw when focus changes. Move hasFocus to EditModel where it can be used forNeil1-1/+4
2021-04-27Rename CharacterSet and CharacterCategory modules in Scintilla to CharacterTypeNeil1-2/+2
2021-04-26Avoid some warnings.Neil1-6/+6
2021-04-26Extract related groups of fields out of ViewStyle into new structs.Neil1-38/+38
2021-04-26Move hotspotSingleLine from ViewStyle to EditModel as it defines behaviour, notNeil1-4/+4
2021-04-25Feature [feature-requests:#1402]. Unify colour type with ColourAlpha.Neil1-37/+37