diff options
author | Noel Grandin <noel@peralex.com> | 2015-07-30 10:11:57 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-07-30 10:11:57 +0200 |
commit | c45dc832dde14b8c8573c6feb3b8cac0a57b66a6 (patch) | |
tree | ba37d5ef9237ab71722be7abc79237fb7623bcb5 /include | |
parent | 3a704fc0e15430e98eb8ddc3ed2c781055911a7a (diff) |
remove PostScrollEvent and PostZoomEvent
not used anymore
Change-Id: I9db73a1bfcdb6669310d606b101b1ffdbb2df07f
Diffstat (limited to 'include')
-rw-r--r-- | include/vcl/svapp.hxx | 26 |
1 files changed, 1 insertions, 25 deletions
diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx index 7acca9124b1e..e7808c0b1e12 100644 --- a/include/vcl/svapp.hxx +++ b/include/vcl/svapp.hxx @@ -834,36 +834,12 @@ public: */ static ImplSVEvent * PostMouseEvent( sal_uLong nEvent, vcl::Window *pWin, MouseEvent* pMouseEvent ); -#if !HAVE_FEATURE_DESKTOP - /** Send zoom event - - Experimental work in progress. Available only for iOS and Android, and unclear whether actually - is needed now with tiled rendering. - - @param nEvent Event ID for zoom event - @param pWin Pointer to window to which the event is sent - @param pZoomEvent Zoom event to send - */ - static ImplSVEvent * PostZoomEvent( sal_uLong nEvent, vcl::Window *pWin, ZoomEvent* pZoomEvent ); - - /* Send scroll event - - Experimental work in progress. Available only for iOS and Android, and unclear whether actually - is needed now with tiled rendering. - - @param nEvent Event ID for scroll event - @param pWin Pointer to window to which the event is sent - @param pScrollEvent Scroll event to send - */ - static ImplSVEvent * PostScrollEvent( sal_uLong nEvent, vcl::Window *pWin, ScrollEvent* pScrollEvent ); -#endif - /** Remove mouse and keypress events from a window... any also zoom and scroll events if the platform supports it. @param pWin Window to remove events from - @see HandleKey, PostKeyEvent, PostMouseEvent, PostZoomEvent, PostScrollEvent + @see HandleKey, PostKeyEvent, PostMouseEvent */ static void RemoveMouseAndKeyEvents( vcl::Window *pWin ); |