mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 23:53:19 +00:00
[SHELL32][COMCTL32][BROWSEUI][EXPLORER] Update color usage on WM_SYSCOLORCHANGE (#7325)
This commit is contained in:
parent
e2fc578f6d
commit
751641c2be
6 changed files with 38 additions and 20 deletions
|
@ -2542,6 +2542,11 @@ ChangePos:
|
|||
return (LRESULT) GetStockObject(HOLLOW_BRUSH);
|
||||
}
|
||||
|
||||
LRESULT OnSysColorChange(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
|
||||
{
|
||||
return SendMessageW(m_Rebar, uMsg, wParam, lParam);
|
||||
}
|
||||
|
||||
LRESULT OnNcHitTest(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled)
|
||||
{
|
||||
RECT rcClient;
|
||||
|
@ -3403,6 +3408,7 @@ HandleTrayContextMenu:
|
|||
MESSAGE_HANDLER(WM_NCPAINT, OnNcPaint)
|
||||
MESSAGE_HANDLER(WM_NCACTIVATE, OnNcActivate)
|
||||
MESSAGE_HANDLER(WM_CTLCOLORBTN, OnCtlColorBtn)
|
||||
MESSAGE_HANDLER(WM_SYSCOLORCHANGE, OnSysColorChange)
|
||||
MESSAGE_HANDLER(WM_MOVING, OnMoving)
|
||||
MESSAGE_HANDLER(WM_SIZING, OnSizing)
|
||||
MESSAGE_HANDLER(WM_WINDOWPOSCHANGING, OnWindowPosChanging)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue