aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Editor.cxx
AgeCommit message (Collapse)AuthorFilesLines
2017-08-25Backport: Moved *StyleBits* APIs into deprecated category.Neil1-0/+3
Backport of changeset 6379:b44bb3627bbd.
2017-07-23Backport: Avoid warning although it appears incorrect.Neil Hodgson1-1/+1
Backport of changeset 6359:4a203fb1684e.
2017-07-07Backport: Redraw when overtype changed so caret change visible even when not ↵Justin Dailey1-3/+6
blinking. Notify application with SC_UPDATE_SELECTION when overtype changed - previously sent SC_UPDATE_CONTENT. Backport of changeset 6337:79f86be9e988.
2017-06-22Backport: Cast between Sci_Position.h types used for lexers and Position.h ↵Neil1-135/+173
types used in core to allow the Sci_Position.h types to widen to 64-bits. Backport of changeset 6324:95346e626cf8.
2017-06-13Backport: Bug [#1949]. Fix drawing failure in wrap mode for delete to ↵Neil1-4/+10
start/end of line. Backport of changeset 6313:82cb780a04d1.
2017-06-12Backport: Remove old timer code in favour of the FineTicker* methods.Neil1-97/+22
Backport of changeset 6311:3a180dc6e9c8.
2017-06-12Backport: Simplify mouse and keyboard handling by only retaining the ↵Neil1-42/+6
'WithModifiers" form. All events include a set of keyboard modifier flags. Older calls that passed individual parameters for each key were removed. Backport of changeset 6310:af83baede430.
2017-06-12Backport: Removed unused functions and methods from Platform.h.Neil1-47/+52
Replaced Platform::Clamp with Sci::clamp. Drop MouseButtonBounce workaround for very early GTK+/Linux. Backported from changeset 6307:7030530a9a0f.
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
Define UniqueString as a move-only string and use in a SparseVector for ContractionState. Remove SparseVector method specializations that are no longer needed.
2017-05-10Feature [feature-requests:#1187]. Update scroll bar when annotations added,Neil1-1/+4
removed, or visibility changed.
2017-05-10Simplify DecorationList and its clients by using a vector instead of anNeil1-11/+2
intrusive linked list. Restrict clients to a read-only view.
2017-05-02Use unique_ptr for drawing surfaces and don't check for allocation failureNeil1-1/+1
as that throws an exception. Also use unique_ptr for tab stop positions.
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
line.
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
where it may be needed in the future.
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
2017-03-31Using Sci::Position and Sci::Line to mark variables that are document positionsNeil1-328/+329
and lines.
2017-03-07Bug [#1910]. Accessibility support may be queried and, on GTK+, disabled.Neil1-0/+7
2017-03-06Use several C++11 features as examples so problems with these features are seen.Vicente1-18/+15
Features used are move constructor, unique_ptr, deleted functions, enum class, lambda expression, and range for loop.
2017-03-04Use C++11 keyword "override" for methods that override a base class.Neil1-1/+1
2017-02-23Bug [#1905]. Fix stream selection mode when moving caret up or down.Neil1-0/+3
2017-01-19Bug [#1896]. Avoid unnecessary unfolding when a deletion does not include a lineNeil1-2/+2
end.
2017-01-19Bug [#1896]. Ensure folding consistent when fold header added above folded part.Neil1-1/+1
2016-12-09Use double coordinates instead of float in some cases as float ran out ofNeil1-4/+4
precision in long documents. This meant that individual lines could not be selected by mouse when the document exceeded 16.7 million lines.
2016-06-17Bug [#1888]. Only invalidate selection when using SCI_SETSELECTIONN api'sJohn Ehresman1-32/+39
2016-11-23Implementation of MarginRightClick event.Tse Kit Yam1-0/+21
2016-11-29Textual tags may be displayed on folded lines with SCI_TOGGLEFOLDSHOWTEXT.Tse Kit Yam1-0/+10
2016-11-16Removed elements that have been deprecated for more than 5 years.Neil1-9/+0
2016-11-16Deprecate non-branded struct names in Scintilla.h.Neil1-1/+1
2016-11-14Added alternate appearance for visible tabs which looks like a horizontal line.jedailey1-0/+8
2016-11-05Add options to choose between the locations of a position when thereNeil Hodgson1-4/+10
are multiple locations for one position. The main current use is to find the location at the end of a line or display line when the commonly used location is at the start of the next line.
2016-10-26Moved location to margin code from Editor to ViewStyle.Neil1-7/+1
2016-10-26Marked method const as it can be.Neil1-1/+1
2016-10-22Redraw previous selection when switching from rectangular selection to lineNeil1-0/+1
selection.
2016-10-19Margin click to select line now clears rectangular and additional selections.Neil1-0/+3
2016-09-29The number of margins can be changed with SCI_SETMARGINS.Neil1-5/+13
2016-09-29Margin type SC_MARGIN_COLOUR and API SCI_SETMARGINBACKN added.Neil1-0/+13
Allows choosing any colour for a margin.
2016-09-27On Win32, mouse wheel scrolling can be restricted to only occur when the mouseStefan Küng1-0/+8
is within the window.
2016-09-23EDGE_MULTILINE and SCI_MULTIEDGEADDLINE added to allow displaying multipleA-R-C-A1-4/+14
vertical edges simultaneously.