Age | Commit message (Collapse) | Author | Files | Lines |
|
safety.
|
|
|
|
|
|
subclass.
|
|
|
|
dragging instead of manipulating global state..
|
|
|
|
invalidation if the setting is actually changed.
|
|
This may be SC_CHARACTERSOURCE_DIRECT_INPUT, SC_CHARACTERSOURCE_TENTATIVE_INPUT,
or SC_CHARACTERSOURCE_IME_RESULT.
|
|
|
|
|
|
|
|
|
|
by measuring speed and limiting to around 10 milliseconds.
|
|
This can reduce the time taken to fold a document by half.
|
|
Replace 0 and NULL with nullptr for COM, DirectWrite and least ambiguous cases.
|
|
|
|
can always be used.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
builds. Some of the changes ensure no truncation while others remove casts
that are no longer needed because the externally visible Sci_Position is now
identical to Sci::Position. Some extra methods (CellBuffer::UCharAt and
Document::SciLineFromPosition) added to avoid casting in client code.
Sci::Line is currently identical to Sci::Position but it could be made smaller
so lines have Sci::Line types and are cast.
Some arguments widened.
|
|
|
|
|
|
|
|
|
|
interfaces ILexer4 and IDocument.
|
|
|
|
All events include a set of keyboard modifier flags.
Older calls that passed individual parameters for each key were removed.
|
|
as that throws an exception.
Also use unique_ptr for tab stop positions.
|
|
|
|
|
|
|
|
|
|
and lines.
|
|
Features used are move constructor, unique_ptr, deleted functions, enum class,
lambda expression, and range for loop.
|
|
|
|
precision in long documents. This meant that individual lines could not be
selected by mouse when the document exceeded 16.7 million lines.
|
|
|
|
|
|
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.
|
|
|
|
|
|
is within the window.
|
|
|
|
readers like NVDA will speak when extending the selection with a Shift+Down key
combination scrolls but does not move the caret position relative to the screen.
|