aboutsummaryrefslogtreecommitdiffhomepage
path: root/win32
AgeCommit message (Collapse)AuthorFilesLines
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.
2018-05-14Modernize Platform.h (1) - noexcept, const, standard methods.Neil2-12/+11
Changes made to FontParameters, Font, Window, ListBoxEvent, ListBox, Menu, DynamicLibrary, and Platform.
2018-05-14Include <string_view> to allow future use in Platform interface and Unicode.Neil3-0/+3
2018-05-06Updates for 4.0.5.rel-4-0-5Neil1-2/+2
2018-05-01Encapsulate conversions between WindowID and HWND and hoist cast out of switch.Neil1-26/+31
2018-05-01Update dependencies.Neil2-22/+31
2018-05-01Use RectFromPRectangle to avoid casts.Neil3-3/+7
2018-05-01Bug [#2012]. Use '0' instead of '0l'.Neil1-2/+2
2018-04-30Add conversion function from Scintilla Point to Win32 POINT.Neil2-51/+85
Use namespaces more consistently. Fix typo.
2018-04-30Use const where possible.Neil1-21/+21
2018-04-30Use const for IME, code page and related code.Neil1-28/+27
2018-04-30Use Win32 types and avoid casting. Move code to avoid warnings.Neil2-15/+14
Use const where there is a benefit.
2018-04-30Use message parameter access macros provided by Windows instead of casting.Neil2-35/+11
2018-04-30Use C++ casts in preference to C casts. Use nullptr instead of 0.Neil2-4/+5
2018-04-28Delete standard functions on classes where there could be attempts to copy.Neil1-0/+12
2018-04-28Remove unused definition and replace 0 with nullptr.Neil1-2/+1
2018-04-28Initialize timers in definition instead of looping to avoid cast and warning.Neil1-4/+1
2018-04-27Use floor instead of casts when centring bitmaps inside the given rectangle.Neil1-4/+4
2018-04-26Update dependencies for ElapsedPeriod.Neil1-6/+15
2018-04-26Use <chrono> for platform-independent timing and remove ElapsedTime.Neil3-64/+20
Also use #if for painting measurement as there are 7 sections of code to enable.
2018-04-26Update deps for LexCoffeeScript not using Platform.h.Neil1-4/+4
2018-04-25Remove variables and casts that are not needed.Neil1-4/+2