| Age | Commit message (Collapse) | Author | Files | Lines | |
|---|---|---|---|---|---|
| 2018-03-15 | Backport: Use forward class definitions of XPM and RGBAImage so only code ↵ | Neil | 1 | -1/+0 | |
| that uses them needs to #include "XPM.h". Move definition of standard methods on LineMarker from header to implementation to reduce included text and further isolate use of XPM and RGBAImage. Backport of changeset 6624:32adac0930bb. | |||||
| 2018-01-21 | Backport: Type casts in case Sci::Position and Sci::Line are extended to ↵ | Neil | 1 | -14/+14 | |
| 64-bits. Use of const where reasonable. Backport of changeset 6428:b250ca7c9896. | |||||
| 2017-09-11 | Backport: The Scintilla namespace is always active for internal symbols and ↵ | Neil | 1 | -2/+0 | |
| for the lexer and document interfaces. Backport of changeset 6388:d62863ae40a3. | |||||
| 2017-08-28 | Backport: New header ILoader.h defines ILoader interface as it does not ↵ | Neil | 1 | -0/+1 | |
| belong in ILexer.h. Backport of changeset 6383:9c8257ff60b7. | |||||
| 2017-06-22 | Backport: Cast between Sci_Position.h types used for lexers and Position.h ↵ | Neil | 1 | -6/+6 | |
| types used in core to allow the Sci_Position.h types to widen to 64-bits. Backport of changeset 6324:95346e626cf8. | |||||
| 2017-06-12 | Backport: Remove old timer code in favour of the FineTicker* methods. | Neil | 1 | -8/+0 | |
| Backport of changeset 6311:3a180dc6e9c8. | |||||
| 2017-06-12 | Backport: Simplify mouse and keyboard handling by only retaining the ↵ | Neil | 1 | -23/+23 | |
| '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-12 | Backport: Removed unused functions and methods from Platform.h. | Neil | 1 | -16/+24 | |
| Replaced Platform::Clamp with Sci::clamp. Drop MouseButtonBounce workaround for very early GTK+/Linux. Backported from changeset 6307:7030530a9a0f. | |||||
| 2017-05-21 | Make SparseVector work with move-only types. | Neil | 1 | -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-02 | More consistent use of size_t when converting Unicode formats. | Neil | 1 | -20/+21 | |
| 2017-05-02 | Use unique_ptr for drawing surfaces and don't check for allocation failure | Neil | 1 | -43/+39 | |
| as that throws an exception. Also use unique_ptr for tab stop positions. | |||||
| 2017-04-21 | More consistent deletion of standard methods. | Neil | 1 | -1/+1 | |
| 2017-04-20 | More consistent deletion of standard methods. | Neil | 1 | -2/+3 | |
| 2017-04-15 | Avoid calling virtual functions in constructors and destructors. | Neil | 1 | -3/+3 | |
| 2017-04-07 | Prefer C++ static cast over C-style casts. | Neil | 1 | -5/+5 | |
| 2017-04-07 | Use same parameter names in declarations and definitions. | Neil | 1 | -2/+2 | |
| 2017-04-06 | Added const where possible. | Neil | 1 | -39/+39 | |
| 2017-04-01 | Standardize on C++ headers, remove headers that aren't needed and add <cstddef> | Neil | 1 | -7/+8 | |
| where it may be needed in the future. | |||||
| 2017-03-31 | Hide decorations details a little. | Neil | 1 | -1/+1 | |
| 2017-03-31 | Using Sci::Position and Sci::Line to mark variables that are document positions | Neil | 1 | -42/+42 | |
| and lines. | |||||
| 2017-03-09 | Drop support for Windows NT 4 by statically linking to system APIs that are | Neil | 1 | -20/+4 | |
| only available from Windows 2000 and later. | |||||
| 2017-03-06 | Use several C++11 features as examples so problems with these features are seen. | Vicente | 1 | -0/+1 | |
| Features used are move constructor, unique_ptr, deleted functions, enum class, lambda expression, and range for loop. | |||||
| 2017-03-05 | For IMEs, do not clear selected text when there is no composition text to show. | johnsonj | 1 | -1/+4 | |
| 2017-03-04 | Use C++11 keyword "override" for methods that override a base class. | Neil | 1 | -42/+42 | |
| 2016-11-23 | Implementation of MarginRightClick event. | Tse Kit Yam | 1 | -15/+25 | |
| 2016-11-25 | Bug [#1886]. Fix EM_SETSEL to match Microsoft documentation. | Neil | 1 | -5/+1 | |
| 2016-11-20 | Avoid warning with MinGW-w64 which defines D2DERR_RECREATE_TARGET differently | Neil | 1 | -2/+2 | |
| to SDK headers. | |||||
| 2016-10-27 | Tidy CaseMapString by moving some mechanics into CaseConvert. Use StringEncode | Neil | 1 | -58/+42 | |
| and StringDecode more and make more likely to be optimized. | |||||
| 2016-10-27 | Suppress warning message from Code Analysis for code that does work. | Neil | 1 | -0/+6 | |
| 2016-09-27 | On Win32, mouse wheel scrolling can be restricted to only occur when the mouse | Stefan Küng | 1 | -0/+12 | |
| is within the window. | |||||
| 2016-08-28 | SC_CHARSET_DEFAULT now means code page 1252 on Windows unless code page set. | Neil | 1 | -1/+1 | |
| Improved documentation for character sets. | |||||
| 2016-05-14 | Post a caret moved accessibility event in Editor::MovedCaret so that screen | Neil | 1 | -0/+5 | |
| 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. | |||||
| 2016-04-14 | Simplified IME caret positioning. | johnsonj | 1 | -4/+4 | |
| 2016-02-23 | Retry OpenClipboard if it fails as another application may have opened it. | Neil | 1 | -2/+19 | |
| 2016-02-09 | Simplified IME caret position discovery. | johnsonj | 1 | -12/+8 | |
| 2016-02-08 | Extract IME text insertion into AddWString method. | johnsonj | 1 | -27/+19 | |
| 2016-02-06 | Move IME code into IMContext. | johnsonj | 1 | -22/+22 | |
| 2016-02-01 | Simplified inline IME by using StringEncode. | johnsonj | 1 | -26/+6 | |
| 2016-01-22 | Encapsulate ImmGetCompositionStringW for GCS_COMPSTR and GCS_RESULTSTR. | johnsonj | 1 | -19/+22 | |
| 2016-01-09 | Factored out mapping IME state to indicators and finding caret position. | johnsonj | 1 | -25/+36 | |
| 2015-12-14 | Block IME when some selected text is protected. | johnsonj | 1 | -1/+1 | |
| 2015-12-10 | Fix warning in 64-bit builds. | Neil | 1 | -1/+1 | |
| 2015-12-07 | Cancel IME composition for read-only documents. | johnsonj | 1 | -1/+4 | |
| 2015-12-07 | Allow any style for IME instead of truncating style to 5 bits. | Neil | 1 | -1/+1 | |
| 2015-11-20 | Text layout whitespace fixes. | Neil | 1 | -2/+2 | |
| 2015-11-20 | Remove line end whitespace. | Neil | 1 | -6/+6 | |
| 2015-11-20 | Bug [#1779]. Better Unicode input support on Windows systems. | Sam Hocevar | 1 | -25/+48 | |
| - support surrogate pairs in WM_CHAR messages - support characters from supplementary planes in WM_UNICHAR messages - support WM_UNICHAR messages in non-Unicode mode - fix some code duplication Also, do not return FALSE upon receiving a WM_UNICHAR message with a UNICODE_NOCHAR parameter, since WM_UNICHAR can actually be handled just fine (at least with the exact same level of support as WM_CHAR). | |||||
| 2015-09-25 | Replace reinterpret_cast with static_cast where possible. | Neil | 1 | -10/+10 | |
| 2015-09-10 | Handle reconversion when requested by IME. | johnsonj | 1 | -0/+96 | |
| 2015-09-10 | Fix IME caret movements for emoji. | johnsonj | 1 | -1/+1 | |
