[Libreoffice-commits] core.git: include/vcl

Noel Grandin noel at peralex.com
Thu Jul 30 00:52:45 PDT 2015


 include/vcl/svapp.hxx |   24 ++++++++++++++++++++++++
 1 file changed, 24 insertions(+)

New commits:
commit 3a704fc0e15430e98eb8ddc3ed2c781055911a7a
Author: Noel Grandin <noel at peralex.com>
Date:   Thu Jul 30 09:50:59 2015 +0200

    Fix Android build
    
    after commit a45827b2308febc7369db27fb489a6d1389534e1
    "loplugin:unusedmethods"
    
    Change-Id: I8981a6bee237d4e2e5b9fe837a56e073e59b2697

diff --git a/include/vcl/svapp.hxx b/include/vcl/svapp.hxx
index 49dbd67..7acca91 100644
--- a/include/vcl/svapp.hxx
+++ b/include/vcl/svapp.hxx
@@ -834,6 +834,30 @@ 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.
 


More information about the Libreoffice-commits mailing list