aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/ScintillaWin.cxx
AgeCommit message (Collapse)AuthorFilesLines
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-09Factored out mapping IME state to indicators and finding caret position.johnsonj1-25/+36
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.Neil1-6/+6
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-09-25Replace reinterpret_cast with static_cast where possible.Neil1-10/+10
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-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-04Closer correspondence between return type of *WndProc and Win32 definition.Neil1-9/+9
Avoids potential problems if sptr_t changed to a slightly different type.
2014-01-20Fix typos in comments (win32)Stefan Weil1-1/+1
2015-05-20SCI_TARGETASUTF8 and SCI_ENCODEDFROMUTF8 implemented on Win32.Neil1-0/+59
From johnsonj.
2015-05-20Fix bug with Hanja conversions for DBCS.Neil1-40/+27
From johnsonj.
2015-05-16Avoid some warnings from clang.Neil1-3/+3
2015-04-10Allow (null) use of KEYSUNICODE API when built to include deprecated features.Neil1-0/+2
2015-03-18Remove WM_IME_CHAR handling as it no longer appears possible to trigger.Neil1-38/+0
2015-03-13Removed potentially out-of-bounds write.Neil1-1/+0
2015-03-13Changed to symbolic constant.Neil1-3/+3
2015-03-13Scintilla is now always a wide character window so remove vestiges of narrowNeil1-78/+49
character window support.
2015-03-12More efficient conversion to Hangul.Neil1-40/+24
From johnsonj.
2015-02-23Fix non-BMP character entry through the inline IME.Neil1-19/+16
2015-02-22Implement VK_HANJA for Korean on Windows.Neil1-2/+133
2015-01-13Using size_t instead of unsigned int for conversions to UTF16 for 64-bitNeil1-11/+11
compatibility and to lessen the number of casts.
2015-01-11Support removed for Windows 95, 98, and ME.Neil1-51/+16
2015-01-10On Windows GDI, assume font names are encoded in UTF-8 and use wide characterNeil1-5/+7
calls to allow use of Asian font names.
2015-01-07Avoid warning from cppcheck about leaking handle.Neil1-0/+1
2015-01-05Allocate is only called when no handle in constructor so assert that to avoidNeil1-0/+1
warning from cppcheck.
2015-01-05Check for non-NULL render target and avoid Coverity warning.Neil1-1/+1
2014-12-20Don't use bad value after failed call.Neil1-4/+8
2014-12-05Extract FillVirtualSpace so it is not repeated and can be made less complex inNeil1-4/+1
the future.
2014-12-05Using indicators for inline IME.Neil1-61/+157
From johnsonj.
2014-11-24SC_TECHNOLOGY_DIRECTWRITEDC is another provisional mode for DirectWrite drawingNeil1-13/+46
which may fix problems with sibling windows.
2014-11-19Bug [#1670]. Avoid processing mouse move events where the mouse has not movedNeil1-6/+13
as these can cause unexpected dwell start notifications. From Yusuf Ramazan Karagöz.
2014-11-13Bug [#1643]. Only show system caret for GDI as it interferes with Direct2D.Neil1-1/+4
From Mat Berchtold.
2014-10-16Bug [#1666]. Include <stdexcept> due to report of a problem with compilingNeil1-0/+1
Document.h with some versions of MinGW.
2014-09-03Added SC_TECHNOLOGY_DIRECTWRITERETAIN mode.Neil1-4/+8
2014-08-19Bug [#1636]. Support Visual Studio 2010+ line copy clipboard tag.Neil1-2/+6
2014-08-18Bug [#1639]. Only unregister windows classes registered.Neil1-6/+23
From Holger Stenger.