aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
AgeCommit message (Expand)AuthorFilesLines
2018-04-05Backed out changeset: 7402342dc7a3 Caching client rectangle on EditView.Neil1-20/+18
2018-04-04Cache client rectangle on EditView so it can be used easily inside EditView.Neil1-18/+20
2018-03-28Split decorations into interface and implementation.Neil1-14/+14
2018-03-27Use an interface for ContractionState so that there can be differentNeil1-78/+81
2018-03-15Use forward class definitions of XPM and RGBAImage so only code that uses themNeil1-1/+0
2018-03-09Use Position/Line/int more accurately in preparation for large documents.Neil1-26/+27
2018-03-01Mark variables as const where simple.Neil1-100/+100
2018-03-01Use C++ cast in preference to C cast.Neil1-1/+1
2018-03-01Mark pointer argument as const as not written to.Neil1-6/+6
2018-02-24Fix move-extends-selection mode for rectangular and line selections.Mitchell Foral1-17/+52
2018-02-17For rectangular selections, pressing Home or End now moves the caret to the HomeVicente1-3/+14
2018-02-06[Bug #1983] Fix double tap word selection on Windows 10 1709 Fall Creators Up...Dimitar Radev1-1/+1
2018-02-02Implement SC_DOCUMENTOPTION_STYLES_NONE.Neil1-3/+3
2018-01-26Add documentOption argument to SCI_CREATELOADER.Neil1-0/+1
2018-01-28Replace Sci::clamp with C++ standard std::clamp function.Neil1-21/+21
2018-01-28Use std::abs in preference to abs as std::abs is generic and abs casts to intNeil1-2/+2
2017-12-19Start of bidirectional code - implement SCI_SETBIDIRECTIONAL.Neil1-0/+7
2017-11-20Add SCI_GETMOVEEXTENDSSELECTION.Mitchell Foral1-0/+2
2017-09-13Bug [#1971]. Fix line selection by clicking in the margin when scrolled.Neil Hodgson1-0/+2
2017-09-11The Scintilla namespace is always active for internal symbols and for the lexerNeil1-2/+0
2017-08-28New header ILoader.h defines ILoader interface as it does not belong in ILexe...Neil1-0/+1
2017-08-25Moved *StyleBits* APIs into deprecated category.Neil1-0/+3
2017-07-23Avoid warning although it appears incorrect.Neil Hodgson1-1/+1
2017-07-07Redraw when overtype changed so caret change visible even when not blinking.Justin Dailey1-3/+6
2017-07-01Deprecate single phase drawing.Neil1-0/+2
2017-06-22Update IDocument for version 4. Drop IDocumentWithLineEnd interface to just haveNeil1-3/+3
2017-06-22Cast between Sci_Position.h types used for lexers and Position.h types used inNeil1-135/+173
2017-06-13Bug [#1949]. Fix drawing failure in wrap mode for delete to start/end of line.Neil1-4/+10
2017-06-12Remove old timer code in favour of the FineTicker* methods.Neil1-97/+22
2017-06-12Simplify mouse and keyboard handling by only retaining the 'WithModifiers" form.Neil1-42/+6
2017-06-12Removed unused functions and methods from Platform.h.Neil1-47/+52
2017-05-21Use unique_ptr and forward_list to regularize PerLine data structures.Neil1-0/+1
2017-05-21Make SparseVector work with move-only types.Neil1-0/+1
2017-05-10Feature [feature-requests:#1187]. Update scroll bar when annotations added,Neil1-1/+4
2017-05-10Simplify DecorationList and its clients by using a vector instead of anNeil1-11/+2
2017-05-02Use unique_ptr for drawing surfaces and don't check for allocation failureNeil1-1/+1
2017-04-25Bug [#1940]. Canceling modes with the Esc key preserves a rectangular selection.Neil1-1/+1
2017-04-22Using unique_ptr to simplify ownership of images, case folder, and list box.Neil1-1/+1
2017-04-15Use bool literals true and false instead of 1 and 0.Neil1-3/+3
2017-04-09Further use of range-for.Neil1-3/+2
2017-04-09Modernise ViewStyle with vector, unique_ptr, any_of, and method deletion.Neil1-6/+6
2017-04-08Use reference for efficiency.Neil1-1/+1
2017-04-07Use same parameter names in declarations and definitions.Neil1-5/+5
2017-04-06Added const where possible.Neil1-71/+71
2017-04-06Added a caret line frame as an alternative visual for highlighting the caret ...A-R-C-A1-0/+6
2017-04-02Added "Reverse Selected Lines" as SCI_LINEREVERSE.Vicente1-0/+31
2017-04-01More encapsulation for Decoration and DecorationList.Neil1-9/+9
2017-04-01Standardize on C++ headers, remove headers that aren't needed and add <cstddef>Neil1-5/+6
2017-03-31Prefer standard min/max over Platform's as adapts to changed types.Neil1-13/+13
2017-03-31Hide decorations details a little.Neil1-1/+1