aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
2015-07-14Split LexOthers.cxx into separate files for each lexer: LexBatch, LexDiff,Neil1-3/+18
LexErrorList, LexMake, LexNull, and LexProps.
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.
2015-06-24Simplify text measurement and drawing by removing segmentation and failureNeil1-88/+25
handling that was needed to support Windows 95.
2015-06-19Updates for release 3.5.7.rel-3-5-7Neil1-2/+2
2014-01-20Fix typos in comments (win32)Stefan Weil2-4/+4
2015-05-22Updates for 3.5.6.Neil1-2/+2
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-05-13Bug [#1703]. Fix bug when drawing text margins in buffered mode which would useNeil1-2/+7
default encoding instead of chosen encoding.
2015-04-21Fix link error when SCI_NAMESPACE used.Neil1-1/+4
From Stefan Küng.
2015-04-14Getting ready for 3.5.5 release.Neil1-2/+2
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-15Bug [#1705]. Fix a bug with Mingw-w64. Probably due to incorrect definition ofNeil1-2/+3
DWRITE_TEXT_METRICS struct in header.
2015-03-13Bug [#1701]. Turn on _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES.Neil1-1/+2
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-12Reduce size of buffers allocated on stack to avoid warnings from Visual StudioNeil1-1/+1
analyze.
2015-03-12More efficient conversion to Hangul.Neil3-59/+47
From johnsonj.
2015-03-05Updates for 3.5.4.Neil1-2/+2
2015-02-23Fix non-BMP character entry through the inline IME.Neil1-19/+16
2015-02-22Avoid warnings about uninitialised field.Neil1-1/+1
2015-02-22Implement VK_HANJA for Korean on Windows.Neil6-7/+294
2015-02-11Add the OLEAUT32 library as it will be needed for BSTR support.Neil2-2/+2
2015-01-14Preparing for version 3.5.3.Neil1-2/+2
2015-01-13Using size_t instead of unsigned int for conversions to UTF16 for 64-bitNeil2-13/+13
compatibility and to lessen the number of casts.
2015-01-11Support removed for Windows 95, 98, and ME.Neil3-94/+22
2015-01-10On Windows GDI, assume font names are encoded in UTF-8 and use wide characterNeil2-13/+19
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-20Check for failure of SystemParametersInfo.Neil1-8/+9
2014-12-09Feature [feature-requests:#1091]. Lexer for Motorola S-Record.Neil1-0/+3
From Markus Heidelberg.
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-29Updates for 3.5.2 release.Neil1-2/+2
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-10-07Feature [feature-requests:#1077]. Support MinGW compilation under Linux.Neil1-3/+9
2014-10-07Removing old CVS artifacts.Neil1-3/+0
2014-10-07Trace failures to flush when drawing bitmaps in Direct2D.Neil1-1/+4
2014-10-07Feature [feature-requests:#1080]. Allow right click selection in popup menu.Neil1-1/+1
2014-10-02Allow using C++11 <regex> for searches as a provisional feature.Neil2-1/+9
2014-09-25Updating for 3.5.1.Neil1-2/+2
2014-09-03Added SC_TECHNOLOGY_DIRECTWRITERETAIN mode.Neil1-4/+8