aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
2022-03-04Feature [feature-requests:#1432] Simplify CallTipStart by passing in surface andZufu Liu3-23/+9
font. This allows customization of surface creation and ensures surface and font for calltip are the same as used in main window.
2022-03-03Bug [#2295] Fix warnings from Coverity and Visual C++.Neil1-15/+37
Replace UniqueBSTR which was a unique_ptr with ScopedBSTR as Coverity has strict rules about the BSTR type and would show COM.BSTR.CONV for all attempts at wrapping BSTR with unique_ptr. Includes code from Zufu Liu.
2022-03-01Update Windows API version to Windows 10 (0x0A00) as released in 2015 and SDKsNeil2-53/+4
should now be compatible.
2022-03-01Removed duplicate element.Neil1-1/+0
2022-02-28Fix null dereference warning from Coverity 2021.12.Neil1-1/+1
2022-02-25Fix typo in comment.Neil1-1/+1
2022-02-25Bug [#2309] Avoid crash for unexpected right-to-left text.Neil Hodgson2-11/+53
2022-02-24Added tag rel-5-2-1 for changeset c37b11edab22Neil1-0/+1
2022-02-24Updates for 5.2.1 release.rel-5-2-1Neil9-19/+20
2022-02-24Bug [#2315] Update dependencies for KeyMap.Neil3-0/+6
2022-02-21Bug [#2317] Fix pixmap leak on GTK.Neil Hodgson2-5/+10
2022-02-17Suppress cppcheck warnings where it doesn't undertand changing dropWentOutsideNeil1-0/+4
in called methods.
2022-02-17Add extra condition to avoid Clang-Tidy warning.Neil1-1/+1
2022-02-16Bug [#2315] Fix undefined macros. Fixes key map for GTK on macOS and Haiku ↵Neil3-1/+11
build.
2022-02-16Fix re-entrant painting to maintain update region.Mitchell Foral2-5/+19
2022-02-16Fix preprocessor condition to enable threading on Linux.Neil Hodgson1-1/+1
2022-02-10Replace "OS X' with "macOS".Neil16-41/+40
2022-02-10Forgot fix.Neil1-0/+5
2022-02-09Added tag rel-5-2-0 for changeset b6b3e7f6ef41Neil1-0/+1
2022-02-05Updates for 5.2.0.rel-5-2-0Neil9-28/+23
2022-02-02Make check value larger as it tripped on testing 100MB line.Neil1-2/+2
2022-02-02Feature [feature-requests:#1427] Add multithreaded layout which improvesNeil13-45/+194
performance significantly for very wide lines.
2022-02-02Add Supports::ThreadSafeMeasureWidths for platforms to indicate if they supportNeil7-3/+23
concurrent calls to MeasureWidths.
2022-01-31Turn off tracing that was accidentally committed.Neil1-1/+1
2022-01-31Place CaseFolderDBCS in unnamed namespace to avoid one definition rule warningsNeil Hodgson3-0/+11
(ctuOneDefinitionRuleViolation) from Cppcheck.
2022-01-31Implement more unique_ptr allocation wrappers and place in new Wrappers.h ↵Neil Hodgson7-257/+248
header.
2022-01-31Simplify Converter and avoid warnings.Neil Hodgson1-5/+2
2022-01-30Avoid type safety warnings.Neil1-13/+11
2022-01-30Use noexcept and const to avoid warnings.Neil1-5/+5
2022-01-30Simplify pango_layout_set_text and suppress type warnings.Neil1-11/+15
Avoid strlen when .length() available.
2022-01-30Use unique_ptr for PangoContext and PangoLayout.Neil Hodgson1-40/+36
2022-01-30Use language field instead of calling pango_context_get_language as now alwaysNeil Hodgson1-2/+2
available.
2022-01-30Feature [feature-requests:#1427] Make GTK MeasureWidths andNeil Hodgson1-11/+66
MeasureWidthsUTF8 reentrant so they can be called safely from multiple threads.
2022-01-28Guard macOS option for dynamic library from being active on Linux.Neil Hodgson1-1/+3
2022-01-28Use Pango library pango_units_from_double pango_units_to_double instead ofNeil Hodgson1-19/+8
custom equivalents as should no longer need to be compatible with very old Pango.
2022-01-28Bug [#2310] Use fractional glyph positions on GTK to make monospaced fonts workNeil Hodgson1-0/+9
better with Chinese text.
2022-01-22Feature [feature-requests:#1422] Minor improvements to line layout and wrapping.Zufu Liu5-18/+21
May avoid some small costs and be clearer.
2022-01-20Hide details of PositionCache.Neil5-41/+65
Move class declarations of PositionCache and PositionCacheEntry into cxx file and only define IPositionCache interface and CreatePositionCache factory function in header.
2022-01-17Feature [feature-requests:#1427] Make Cocoa MeasureWidths andNeil Hodgson3-58/+42
MeasureWidthsUTF8 reentrant so they can be called safely from multiple threads.
2022-01-14Remove unnecessary inclusion of POSIX headers.Neil Hodgson3-9/+0
2022-01-13Optimize GetColumn a little.Neil1-0/+3
2022-01-13Feature [feature-requests:#1427] Make SurfaceD2D::MeasureWidths andZufu Liu1-61/+60
MeasureWidthsUTF8 reentrant so they can be called safely from multiple threads.
2022-01-13Remove tests for pD2DFactory and pIDWriteFactory that can not fail.Zufu Liu2-12/+12
Use constexpr.
2022-01-12Remove checking for lexers as Scintilla can no longer be built with lexers.Neil1-3/+1
2022-01-11Correct comment about dependency generation.Neil3-3/+3
2022-01-13Feature [feature-requests:#1425] Allow Scintilla to run if built without ↵Christian Schmitz2-0/+7
cursor images.
2022-01-11Bug [#2306] Allow choice of object file directory with makefile by setting ↵Arkadiusz Michalski4-75/+85
DIR_O.
2022-01-11Remove verticalDeviceResolution field which was no longer used from revision ↵Neil Hodgson2-2/+0
4253.
2021-12-16Feature [feature-requests:#1422] Fix scrollbar with annotations and wrapping.Zufu Liu2-0/+7
2021-12-12Fix some minor analysis warnings.Neil1-5/+7