diff options
| author | Neil <nyamatongwe@gmail.com> | 2020-05-22 19:38:01 +1000 |
|---|---|---|
| committer | Neil <nyamatongwe@gmail.com> | 2020-05-22 19:38:01 +1000 |
| commit | 489efcac93c86d2f3e4aa2bdb784c7332998d118 (patch) | |
| tree | 297c9ee80d40121d498fff2be5dd35d2eedd90f0 | |
| parent | 418d59d9256319728d92fafd0ec31a341e144d7c (diff) | |
| download | scintilla-mirror-489efcac93c86d2f3e4aa2bdb784c7332998d118.tar.gz | |
Backport: Bug [#2171]. Add some documentation about WM_DPICHANGED.
Backport of changeset 8250:daff2daf10d6.
| -rw-r--r-- | doc/ScintillaDoc.html | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/ScintillaDoc.html b/doc/ScintillaDoc.html index e9f3471c0..98040ba94 100644 --- a/doc/ScintillaDoc.html +++ b/doc/ScintillaDoc.html @@ -3719,10 +3719,10 @@ struct Sci_TextToFind { <code>SendMessage(hScintilla, WM_XXXX, WPARAM, LPARAM)</code> where <code>hScintilla</code> is the handle to the Scintilla window you created as your editor.</p> - <p>While we are on the subject of forwarding messages in Windows, the top level window should - forward any <code>WM_SETTINGCHANGE</code> messages to Scintilla (this is currently used to - collect changes to mouse settings, but could be used for other user interface items in the - future).</p> + <p>On Windows, the top level window should forward any <code>WM_SETTINGCHANGE</code>, + <code>WM_SYSCOLORCHANGE</code>, and + <code>WM_DPICHANGED</code> messages to Scintilla as this allows Scintilla to respond to changes to + mouse settings, monitor resolution, colour scheme and similar system properties.</p> <p><b id="SCI_SETBUFFEREDDRAW">SCI_SETBUFFEREDDRAW(bool buffered)</b><br /> <b id="SCI_GETBUFFEREDDRAW">SCI_GETBUFFEREDDRAW → bool</b><br /> |
