diff options
author | Henry Castro <hcastro@collabora.com> | 2021-06-23 08:37:34 -0400 |
---|---|---|
committer | Henry Castro <hcastro@collabora.com> | 2022-02-08 21:40:04 +0100 |
commit | 2f7a0b81f21f7e383808c2e5f5d532cb50b84376 (patch) | |
tree | d46bf60c7329d7f45ae49bf650f157d0b3386d9c /vcl/source/window | |
parent | d8538d7fd693a24c7698ac9dd5447134c0c0f210 (diff) |
lok: introduce Application::LOKHandleMouseEvent
Entry point to call the ImplLOKHandleMouseEvent function
mainly to process mouse events.
Change-Id: I17513643733bf5990d41ab8cf47cdc322ed526ea
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118846
Tested-by: Szymon Kłos <szymon.klos@collabora.com>
Reviewed-by: Szymon Kłos <szymon.klos@collabora.com>
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/117711
Tested-by: Jenkins
Reviewed-by: Henry Castro <hcastro@collabora.com>
Diffstat (limited to 'vcl/source/window')
-rw-r--r-- | vcl/source/window/winproc.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/winproc.cxx b/vcl/source/window/winproc.cxx index 35a5ce2754d2..b79bc0744729 100644 --- a/vcl/source/window/winproc.cxx +++ b/vcl/source/window/winproc.cxx @@ -2154,7 +2154,7 @@ static void ImplHandleUserEvent( ImplSVEvent* pSVEvent ) } } -static MouseEventModifiers ImplGetMouseMoveMode( SalMouseEvent const * pEvent ) +MouseEventModifiers ImplGetMouseMoveMode( SalMouseEvent const * pEvent ) { MouseEventModifiers nMode = MouseEventModifiers::NONE; if ( !pEvent->mnCode ) @@ -2166,7 +2166,7 @@ static MouseEventModifiers ImplGetMouseMoveMode( SalMouseEvent const * pEvent ) return nMode; } -static MouseEventModifiers ImplGetMouseButtonMode( SalMouseEvent const * pEvent ) +MouseEventModifiers ImplGetMouseButtonMode( SalMouseEvent const * pEvent ) { MouseEventModifiers nMode = MouseEventModifiers::NONE; if ( pEvent->mnButton == MOUSE_LEFT ) |