aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
2016-09-27On Win32, mouse wheel scrolling can be restricted to only occur when the mouseStefan Küng1-0/+12
is within the window.
2016-09-24Initial support for building with 32-bit clang.Neil1-6/+18
2016-09-10Expose NO_CXX11_REGEX in Win32 makefiles.Neil2-4/+4
2016-08-31Updates for 3.6.7.Neil1-2/+2
2016-08-30Regenerate deps.mak for Windows to include LexJSON.Neil1-0/+4
2016-08-28SC_CHARSET_DEFAULT now means code page 1252 on Windows unless code page set.Neil1-1/+1
Improved documentation for character sets.
2016-05-18Updates for 3.6.6.Neil1-2/+2
2016-05-14Post a caret moved accessibility event in Editor::MovedCaret so that screenNeil1-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-05-03Avoid use of const_cast when retrieving window positions.Neil1-4/+5
2016-05-03Fix off-by-one error that allowed resizing autocompletion from bottom when itNeil1-1/+1
was located above the caret.
2016-04-23Updates for 3.6.5 release.Neil1-2/+2
2016-04-14Simplified IME caret positioning.johnsonj1-4/+4
2016-03-20Feature [feature-requests:#1140]. JSON lexer added.nkmathew1-0/+3
2016-03-09Updates for 3.6.4.Neil1-2/+2
2016-03-07To avoid failures with MinGW 4.9 switch language standard from c++0x to gnu++0x.Neil1-1/+1
MinGW 4.9 doesn't install a copy of gcc as cc.exe so explicitly set CC=gcc.
2016-03-07Include stddef.h as using ptrdiff_t and stddef.h is its home.Neil1-0/+1
2016-02-24Bug [#1813]. Unmangle exported Scintilla_DirectFunction.Neil2-4/+4
Backed out changeset: 819f953e432b
2016-02-23Retry OpenClipboard if it fails as another application may have opened it.Neil1-2/+19
2016-02-09Simplified IME caret position discovery.johnsonj1-12/+8
2016-02-08Extract IME text insertion into AddWString method.johnsonj1-27/+19
2016-02-06Move IME code into IMContext.johnsonj1-22/+22
2016-02-01Simplified inline IME by using StringEncode.johnsonj1-26/+6
2016-01-22Encapsulate ImmGetCompositionStringW for GCS_COMPSTR and GCS_RESULTSTR.johnsonj1-19/+22
2016-01-10Updates for 3.6.3.Neil1-2/+2
2016-01-09Factored out mapping IME state to indicators and finding caret position.johnsonj1-25/+36
2016-01-07Remove pragmas that were needed for Windows 9x which is no longer supported.Neil1-10/+0
2015-12-16Don't use .DEF file as it is not needed.Neil2-4/+4
2015-12-14Block IME when some selected text is protected.johnsonj1-1/+1
2015-12-10Fix warning in 64-bit builds.Neil1-1/+1
2015-12-07Cancel IME composition for read-only documents.johnsonj1-1/+4
2015-12-07Allow any style for IME instead of truncating style to 5 bits.Neil1-1/+1
2015-11-20Text layout whitespace fixes.Neil1-2/+2
2015-11-20Remove line end whitespace.Neil3-8/+8
2015-11-20Using DirectWrite, for ligatures and other character clusters, display caret andNeil1-4/+3
selections part-way through clusters so that the caret doesn't stick to the end of the cluster making it easier to understand editing actions.
2015-11-20Bug [#1779]. Better Unicode input support on Windows systems.Sam Hocevar1-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-11-02Updates for 3.6.2.Neil1-2/+2
2015-09-26RTTI is a part of standard C++ so don't turn it off.Neil1-1/+1
2015-09-25Replace reinterpret_cast with static_cast where possible.Neil2-45/+45
2015-09-25Remove null occurrences of reinterpret_cast which just converted HDC to HDC.Neil1-15/+15
2015-09-22Support using Visual C++ 2015 to target Windows XP.Neil1-2/+7
2015-09-10Updates for 3.6.1.rel-3-6-1johnsonj1-2/+2
2015-09-10Handle reconversion when requested by IME.johnsonj1-0/+96
2015-09-10Fix IME caret movements for emoji.johnsonj1-1/+1
2015-09-04Change FillVirtualSpace to ClearBeforeTentativeStart and delete selected text.johnsonj1-1/+1
2015-08-25Encapsulate HIMC in a small class to ensure it is always freed.Neil1-32/+41
2015-07-30Updated header dependencies to include Sci_Position.h and Position.h.Neil2-356/+554
2015-07-29Update version numbers and dates for 3.6.0 release.Neil1-2/+2
2015-07-28Avoid candidate box randomly popping up away from edit pane with (especiallyjohnsonj1-0/+1
Japanese) IME input.
2015-07-27Add Position.h as a place-holder and to allow #include "Position.h" in source.Neil1-0/+1
2015-07-16Cast for 64-bit warning with Visual C++ 2015.Neil1-1/+1