From 0b9c12bf9cc211c30a40b13d7ba72dbba5328369 Mon Sep 17 00:00:00 2001 From: Neil Date: Wed, 10 Jun 2020 13:00:05 +1000 Subject: Feature [feature-requests:1355]. Round instead of truncating for SCI_TEXTWIDTH. --- doc/ScintillaHistory.html | 5 +++++ src/Editor.cxx | 6 +++--- src/Editor.h | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/doc/ScintillaHistory.html b/doc/ScintillaHistory.html index 6f1a31c61..fc698298c 100644 --- a/doc/ScintillaHistory.html +++ b/doc/ScintillaHistory.html @@ -577,6 +577,11 @@ The latex lexer supports lstlisting environment that is similar to verbatim. Feature #1358. +
  • + Round SCI_TEXTWIDTH instead of truncating as this may be more accurate when sizing application + elements to match text. + Feature #1355. +
  • Release 4.4.3 diff --git a/src/Editor.cxx b/src/Editor.cxx index b7636adb2..234a2aaa6 100644 --- a/src/Editor.cxx +++ b/src/Editor.cxx @@ -1823,11 +1823,11 @@ Sci::Position Editor::FormatRange(bool draw, const Sci_RangeToFormat *pfr) { return view.FormatRange(draw, pfr, surface, surfaceMeasure, *this, vs); } -int Editor::TextWidth(int style, const char *text) { +long Editor::TextWidth(uptr_t style, const char *text) { RefreshStyleData(); AutoSurface surface(this); if (surface) { - return static_cast(surface->WidthText(vs.styles[style].font, text)); + return std::lround(surface->WidthText(vs.styles[style].font, text)); } else { return 1; } @@ -6757,7 +6757,7 @@ sptr_t Editor::WndProc(unsigned int iMessage, uptr_t wParam, sptr_t lParam) { case SCI_TEXTWIDTH: PLATFORM_ASSERT(wParam < vs.styles.size()); PLATFORM_ASSERT(lParam); - return TextWidth(static_cast(wParam), CharPtrFromSPtr(lParam)); + return TextWidth(wParam, CharPtrFromSPtr(lParam)); case SCI_TEXTHEIGHT: RefreshStyleData(); diff --git a/src/Editor.h b/src/Editor.h index 80203d319..dda14c311 100644 --- a/src/Editor.h +++ b/src/Editor.h @@ -388,7 +388,7 @@ protected: // ScintillaBase subclass needs access to much of Editor void RefreshPixMaps(Surface *surfaceWindow); void Paint(Surface *surfaceWindow, PRectangle rcArea); Sci::Position FormatRange(bool draw, const Sci_RangeToFormat *pfr); - int TextWidth(int style, const char *text); + long TextWidth(uptr_t style, const char *text); virtual void SetVerticalScrollPos() = 0; virtual void SetHorizontalScrollPos() = 0; -- cgit v1.2.3