aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32/PlatWin.cxx
AgeCommit message (Collapse)AuthorFilesLines
2017-03-10Bug [#1653]. Detect if Windows 8+ or KB2533623 installed before using flag.Neil1-5/+17
LOAD_LIBRARY_SEARCH_SYSTEM32 causes failure of Direct2D on original Windows 7 so check for availability before using.
2017-03-09Drop support for Windows NT 4 by statically linking to system APIs that areNeil1-65/+10
only available from Windows 2000 and later.
2017-03-04Use C++11 keyword "override" for methods that override a base class.Neil1-103/+103
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-03-07Include stddef.h as using ptrdiff_t and stddef.h is its home.Neil1-0/+1
2016-01-07Remove pragmas that were needed for Windows 9x which is no longer supported.Neil1-10/+0
2015-11-20Remove line end whitespace.Neil1-1/+1
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-09-25Replace reinterpret_cast with static_cast where possible.Neil1-35/+35
2015-09-25Remove null occurrences of reinterpret_cast which just converted HDC to HDC.Neil1-15/+15
2015-07-16Cast for 64-bit warning with Visual C++ 2015.Neil1-1/+1
2015-06-24Simplify text measurement and drawing by removing segmentation and failureNeil1-88/+25
handling that was needed to support Windows 95.
2014-01-20Fix typos in comments (win32)Stefan Weil1-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-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-12Reduce size of buffers allocated on stack to avoid warnings from Visual StudioNeil1-1/+1
analyze.
2015-01-13Using size_t instead of unsigned int for conversions to UTF16 for 64-bitNeil1-2/+2
compatibility and to lessen the number of casts.
2015-01-11Support removed for Windows 95, 98, and ME.Neil1-42/+6
2015-01-10On Windows GDI, assume font names are encoded in UTF-8 and use wide characterNeil1-8/+12
calls to allow use of Asian font names.
2014-12-20Check for failure of SystemParametersInfo.Neil1-8/+9
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-07-23Avoid shadowed names mostly in method prototypes. Turn off shadowNeil1-4/+4
warnings for lexers since they may be maintained by others.
2014-05-31Merge 343-Win32-Fix which fixes hangs and crashes at shutdown on Windows.Neil1-1/+1
2014-05-26Bug [#1602]. Bug [#1603]. Fix hangs and crashes at shutdown.Neil1-24/+26
2014-05-24Header include statements are now in a standardised order with that orderNeil1-1/+1
defined in scripts/HeaderOrder.txt.
2014-05-03Replacing the int-based constructors for Point and PRectangle with FromIntsNeil1-9/+9
static methods as there were too many failures with mixed types and not-quite matching types.
2014-05-03Turn on MSVC 'possible loss of data' warnings and add explicit casts.Neil1-12/+14
2014-05-03Explicit and more consistent use of XYPOSITION versus int.Neil1-74/+101
Fixes possible loss of data warnings when switched on.
2014-04-25Free system libraries at finalization.Neil1-3/+21
2014-04-25Delete factories when shutting down to avoid system messages frommm DXGI.Neil1-0/+9
2014-02-02Fix bug when resizing list with only short strings caused the list to move.Neil1-1/+2
2014-01-24Make RoundedRectangle with Direct2D have similar shape to GDI with 4 pixelNeil1-2/+2
radius corners.
2014-01-21Avoid memset for safety.Neil1-2/+2
2014-01-18With Direct2D draw circles with a 1 pixel larger radius to better matchNeil1-1/+1
other platforms and ensure for folding markers that the '+' or '-' do not touch the circle. Change order of drawing so that circles are drawn after connecting lines so overwrite any tails.
2014-01-12Remove old workarounds for system headers missing elements.Neil1-30/+1
2013-12-22Avoid unsafe strcpy, strncpy, and strcat replacing with safer functions whichNeil1-5/+4
guaranty termination where possible.
2013-12-15Make single argument constructors explicit to avoid unexpected conversions.Neil1-3/+3
2013-12-15Format normalization - whitespace and braces made consistent.Neil1-15/+16
Parameter names added to method declarations.
2013-10-23Feature [feature-requests:#887]. Apply GDI gamma to DirectWrite .Neil1-1/+43
From Marko Njezic.
2013-10-17Avoid failure in MinGW-w64 Direct2D binding.Neil1-1/+6
2013-09-10Use C++ struct initialization {} so can drop -Wno-missing-braces setting for ↵Neil1-4/+3
gcc.
2013-09-04Fix namespace compilation errors when SCI_NAMESPACE defined.Neil1-20/+8
2013-08-02Fix failures when invalid DBCS text was measured by ensuringNeil1-4/+7
all positions are filled with reasonable non-negative values.
2013-07-25Minor changes to avoid warnings from Coverity.Neil1-6/+15
2013-07-21Normalising order of language headers.Neil1-2/+2
2013-07-03Make work with older compilers.Neil1-1/+4
2013-07-03Hide deprecation warning for GetVersionEx.nyamatongwe1-0/+10
2013-07-03Avoid using results from failed calls.nyamatongwe1-9/+12