mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 22:23:01 +00:00
[RSHELL]
* Begin work in improving the behaviour of the horizontal mode menuband. There's still a lot of work to do, and some things are temporarily worse than before, but in other places it has improved already. CORE-7586 svn path=/branches/shell-experiments/; revision=62520
This commit is contained in:
parent
fb26c9bcd8
commit
eaec85cafe
5 changed files with 115 additions and 30 deletions
|
@ -65,6 +65,7 @@ public:
|
|||
MESSAGE_HANDLER(WM_PAINT, _OnPaint)
|
||||
MESSAGE_HANDLER(WM_ACTIVATE, _OnActivate)
|
||||
MESSAGE_HANDLER(WM_ACTIVATEAPP, _OnAppActivate)
|
||||
MESSAGE_HANDLER(WM_MOUSEACTIVATE, _OnMouseActivate)
|
||||
END_MSG_MAP()
|
||||
|
||||
BEGIN_COM_MAP(CMenuDeskBar)
|
||||
|
@ -128,6 +129,7 @@ private:
|
|||
LRESULT _OnNotify(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled);
|
||||
LRESULT _OnPaint(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled);
|
||||
LRESULT _OnActivate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled);
|
||||
LRESULT _OnMouseActivate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled);
|
||||
LRESULT _OnAppActivate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL &bHandled);
|
||||
|
||||
BOOL _IsSubMenuParent(HWND hwnd);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue