aboutsummaryrefslogtreecommitdiffhomepage
AgeCommit message (Collapse)AuthorFilesLines
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
2021-12-12Fix ambiguity for Qt on Linux with gcc.Neil Hodgson1-2/+2
2021-12-12Fix potential Qt bug with position truncation for ImSurroundingText on hugeNeil1-14/+2
documents.
2021-12-12Type harmonization between Scintilla and Qt types.Neil1-22/+23
Fixes warnings from signed/unsigned, int/intptr_t, float/int. Qt uses int for sizes instead of size_t.
2021-12-12Use types that adapt to 64-bit mode to avoid potential issues on huge documents.Neil2-16/+16
2021-12-12Ensure enough room for NUL terminator in string return values.Neil2-3/+7
2021-12-12Made compatible with Qt 6.Fan Yang4-1/+33
Authored by Fan Yang and Justin Dailey.
2021-12-07Added tag rel-5-1-5 for changeset c9556e17e892Neil1-0/+1
2021-12-07Remove some outdated and unimportant text from documentation.rel-5-1-5Neil1-6/+0
2021-12-03Updates for 5.1.5.Neil9-19/+20
2021-12-03Remove comment that is no longer correct.Neil1-1/+0
2021-12-01Bug [#2300] Abandon drag when rectangle is empty as empty image caused crash.Chinh Nguyen2-0/+6
2021-12-01Bug [#2292] Better fix to draw margin means drawHashMarksAndLabelsInRect called.Chinh Nguyen1-1/+1
2021-11-30Bug [#2292] Fix bug where margin would not draw when scrolled.Rowan Daniell2-0/+8
2021-11-27Bug [#2299] Set active state correctly at creation.Rowan Daniell2-1/+6
2021-11-25Added mention of x-studio.Neil1-0/+4
2021-11-24For iterators, make constructors explicit, remove operators that are defaultedNeil1-72/+17
correctly and use 'using' in preference to 'typedef'.
2021-11-23Fix warnings from Qt Creator 5.Neil Hodgson4-24/+17
2021-11-21Bug [#2296] Fix multi-monitor widget positioning on waylandJan Dolinar2-0/+17
2021-11-22Make const where correct.Neil1-2/+2
2021-11-22Move common Win32 functions for releasing IUnknown* and DLL function access intoNeil8-46/+69
new WinType.h header.
2021-11-22Bug [#2295] Fix potential memory leak with Korean language input.Zufu Liu4-61/+73
2021-11-16Remove some casts that are not needed and a long-disused assertion.Neil1-3/+2
2021-11-13Bug [#2294] Fix assertion failure with autocompletion list when order isNeil3-2/+51
SC_ORDER_CUSTOM or SC_ORDER_PERFORMSORT and the list is empty.
2021-11-12Remove XiteQt.py as ScintillaEditPy is no longer included in ScintillaNeil5-118/+5
and the required PySide library no longer supported.
2021-11-12Remove ScintillaEditPy as its prerequisites are unsupported.Neil9-799/+6
2021-11-12Change SCI_GETTEXT, SCI_GETSELTEXT, and SCI_GETCURLINE to be more consistentNeil4-28/+38
with other APIs with respect to buffer lengths.
2021-11-10Call ConstCharPtrFromSPtr when result should be const.Neil1-23/+23
This limits use of the more dangerous form CharPtrFromSPtr.
2021-11-08Added tag rel-5-1-4 for changeset ae7f6a2ad9adNeil1-0/+1
2021-11-08Update release date.rel-5-1-4Neil2-3/+3
2021-11-03Added <climits> for UCHAR_MAX.Neil1-0/+1