From 80edfc64c0934a2316182735a11d06053337ba44 Mon Sep 17 00:00:00 2001 From: George Hazan Date: Thu, 17 Aug 2023 18:11:00 +0300 Subject: =?UTF-8?q?fixes=20#3643=20(NewStory:=20=D0=BC=D0=BE=D0=B6=D0=BD?= =?UTF-8?q?=D0=BE=20=D0=BB=D0=B8=20=D0=BF=D1=80=D0=B8=20=D1=80=D0=B5=D0=B4?= =?UTF-8?q?=D0=B0=D0=BA=D1=82=D0=B8=D1=80=D0=BE=D0=B2=D0=B0=D0=BD=D0=B8?= =?UTF-8?q?=D0=B8=20=D0=BD=D0=B5=20=D0=BC=D0=B5=D0=BD=D1=8F=D1=82=D1=8C=20?= =?UTF-8?q?=D1=86=D0=B2=D0=B5=D1=82=20=D1=84=D0=BE=D0=BD=D0=B0=3F)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- plugins/NewStory/src/fonts.cpp | 7 +++++++ plugins/NewStory/src/history_control.cpp | 8 ++++++++ plugins/NewStory/src/stdafx.h | 1 + 3 files changed, 16 insertions(+) (limited to 'plugins/NewStory') diff --git a/plugins/NewStory/src/fonts.cpp b/plugins/NewStory/src/fonts.cpp index c805a9a072..179a78416b 100644 --- a/plugins/NewStory/src/fonts.cpp +++ b/plugins/NewStory/src/fonts.cpp @@ -43,6 +43,9 @@ int evtFontsChanged(WPARAM, LPARAM) for (auto &it : g_colorTable) it.cl = Colour_Get(MODULENAME, it.szName); + DeleteObject(g_plugin.hBackBrush); + g_plugin.hBackBrush = CreateSolidBrush(g_colorTable[COLOR_SELBACK].cl); + for (auto &it : g_fontTable) { it.cl = (COLORREF)Font_Get(MODULENAME, it.szName, &it.lf); @@ -74,6 +77,8 @@ void InitFonts() it.cl = Colour_Get(cid.group, cid.name); } + g_plugin.hBackBrush = CreateSolidBrush(g_colorTable[COLOR_SELBACK].cl); + LOGFONT lfDefault; SystemParametersInfo(SPI_GETICONTITLELOGFONT, sizeof(lfDefault), &lfDefault, FALSE); @@ -98,6 +103,8 @@ void InitFonts() void DestroyFonts() { + DeleteObject(g_plugin.hBackBrush); + for (auto &it : g_fontTable) DeleteObject(it.hfnt); } diff --git a/plugins/NewStory/src/history_control.cpp b/plugins/NewStory/src/history_control.cpp index 572c318a6b..fc5adebd39 100644 --- a/plugins/NewStory/src/history_control.cpp +++ b/plugins/NewStory/src/history_control.cpp @@ -1102,6 +1102,14 @@ LRESULT CALLBACK NewstoryListWndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM } break; + case WM_CTLCOLORSTATIC: + case WM_CTLCOLOREDIT: + if (lParam == INT_PTR(data->hwndEditBox)) { + SetBkColor((HDC)wParam, g_colorTable[COLOR_SELBACK].cl); + return (LRESULT)g_plugin.hBackBrush; + } + break; + case WM_DESTROY: WindowList_Add(g_hNewstoryLogs, hwnd); delete data; diff --git a/plugins/NewStory/src/stdafx.h b/plugins/NewStory/src/stdafx.h index 57a34317e4..bcabaf8883 100644 --- a/plugins/NewStory/src/stdafx.h +++ b/plugins/NewStory/src/stdafx.h @@ -91,6 +91,7 @@ enum struct CMPlugin : public PLUGIN { HANDLE m_log; + HBRUSH hBackBrush; CMOption bOptVScroll, bSortAscending; bool bMsgGrouping, bDrawEdge; // thesw options are a copy of static CMOption to keep performance high -- cgit v1.2.3