aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
2019-04-06Updated dependencies for change set 7401 adding UniqueString.cxx.Neil2-0/+6
2019-04-05Move UniqueStringCopy into its own source file UniqueString.cxx to hide theNeil2-0/+2
implementation.
2019-04-03Help static analyzers with assert.Neil1-0/+2
2019-04-01Switch generation of make dependencies to Python scripts DepGen.py.Neil5-1583/+3995
Dependencies files deps.mak and nmdeps.mak are formatted with one file per line as that makes it easier to examine differences between versions.
2019-03-29Include "CharacterCategory.h" in all files that include "Document.h" as it willNeil1-0/+1
be needed for adding a CharacterCategory feature.
2019-03-27Updated dependencies for Win32.Neil2-70/+81
2019-03-25Use generic std::abs instead of abs and fabs.Neil2-7/+7
2019-03-25Use generic versions of ceil, floor, round, lround, trunc from <cmath>.Neil1-15/+15
2019-03-20Implement WStringFromUTF8 to simplify code that creates wstring objects forNeil1-4/+2
regular expressions and calling the Win32 API.
2019-03-19Make destructors public to avoid warnings.Neil1-1/+3
2019-03-18Add some operators to Point to simplify client code.Neil2-6/+5
2019-03-18Minor warnings fixed - uninitialized, nullptr, type agreement, avoid casts.Neil1-6/+5
2019-03-18Use noexcept where allowed, not inherited from base class, and not a COM method.Neil1-57/+57
2019-03-05Implement QueueIdleWork on Win32.Neil1-1/+32
2019-03-05Validate window after FullPaint caused by abandoning paint.Neil1-0/+1
2019-03-05Remove feature where WM_PAINT treated wParam as a PAINTSTRUCT*.Neil1-23/+10
2019-03-04Updated version number for release.Neil1-2/+2
2019-02-28Feature [feature-requests:#1265]. Common Intermediate Language (CIL) lexer.Jed Altahan1-0/+3
2019-02-24Use noexcept and constexpr where possible and reasonable.Neil2-38/+36
2019-02-24Remove font caching on Win32.Neil1-107/+7
2019-01-13Replace the only use of a function from <cctype> with a Scintilla function.Neil2-2/+0
Remove inclusion of <cctype> except in lexers as cctype functions often behave poorly and may crash for out of bounds arguments.
2019-01-07Updates for version 4.1.3.rel-4-1-3Neil1-2/+2
2019-01-06Bug [#2068]. Fix some clang-tidy warnings.Zufu Liu1-4/+4
2018-12-07Feature [feature-requests:#1246]. Replace MAKELONG with MAKELRESULT andZufu Liu1-3/+3
MAKEWPARAM which are more specific.
2018-11-21Feature [feature-requests:#1242]. Add lexer for NimJad Altahan1-0/+3
2018-10-17Use nullptr, default brace and member initialisation for some simple cases.Neil2-52/+42
2018-10-11Add SCI_SETCOMMANDEVENTS API to allow turning off command events.Neil1-3/+5
This can reduce the time taken to fold a document by half.
2018-09-30Updates for 4.1.2 release.Neil1-2/+2
2018-09-05Updates for 4.1.1.Neil1-2/+2
2018-08-09Avoid some casts.Neil1-3/+4
2018-08-09Bug [#2030]. Fix Win32 crash setting technology to default after bidirectionalZufu Liu1-0/+2
mode set.
2018-07-31Change lifetime of textLayout for bidirectional so it is always released inNeil1-3/+4
ScreenLineLayout destructor. Allows multiple ScreenLineLayout calls and fixes a leak when only FindRangeIntervals called.
2018-07-10Use Select* macros from windowsx.h to avoid casts and for consistency.Neil1-8/+8
2018-06-21Feature [feature-requests:#1185]. Add lexers for SAS and Stata.Luke Rasmussen1-0/+6
2018-06-15Updates for 4.1.0.Neil1-2/+2
2018-06-07Remove compile-time ENABLE_BIDIRECTIONAL option as bidirectional feature is nowNeil2-9/+1
controlled completely at run-time.
2018-06-02Define IScreenLineLayout as the main interface for implementing bidirectionalNeil1-216/+166
features by platform code. Implement IScreenLineLayout for Win32 / DirectWrite as ScreenLineLayout.
2018-05-24Fix warnings. Add const, constexpr, and noexcept. Initialize. Standard methods.Neil3-81/+86
Replace 0 and NULL with nullptr for COM, DirectWrite and least ambiguous cases.
2018-05-23Implement bidirectional mode bidiL2R for DirectDraw on Win32.Neil2-6/+420
2018-05-23Add definitions for bidirectional support to Platform.h and provide emptyNeil1-0/+41
implementations for each platform.
2018-05-22Add GradientRectangle method to Surface to draw rectangles with vertical orNeil1-0/+58
horizontal gradients.
2018-05-18Add <vector> to files that include Platform.h as likely needed in future.Neil1-1/+1
2018-05-15Replace ELEMENTS with std::size and drop inclusion of StringCopy.h.Neil2-4/+2
2018-05-15Encapsulate WideCharToMultiByte and MultiByteToWideChar to simplify calling ↵Neil1-58/+64
sites and standardize use of options.
2018-05-14Avoid using 0 as NULL pointer.Neil1-1/+1
2018-05-14Fix warning.Neil1-1/+1
2018-05-14Use string_view for UniConversion functions.Neil2-27/+31
2018-05-14Modernize Platform.h (4) - update Surface to use string_view for text arguments.Neil1-60/+62
2018-05-14Modernize Platform.h (3) - update Surface to delete WidthChar, use size_t forNeil1-34/+7
Polygon and delete the standard copy and assignment methods.
2018-05-14Modernize Platform.h (2) - noexcept, const, constexpr.Neil1-12/+12
ColourDesired is an int instead of long for consistency over different platforms. Changes made to Point, PRectangle, and ColourDesired. RoundXYPosition removed.