Class TouchGestureRecognizer

java.lang.Object
com.luciad.input.touch.TouchGestureRecognizer
All Implemented Interfaces:
AutoCloseable

public final class TouchGestureRecognizer extends Object implements AutoCloseable
This class generates high-level touch gesture events from low-level input events.

High level events are subclasses of IInputEvent such as TouchTapEvent. Sequences of low level events are used to create those high level events.

For example, a touch press + movement of the touch point (possibly multiple times) sequence is recognized as a touch drag gesture. A touch press + a touch release sequence is recognized as a touch tap gesture. This class is useful when adding integration with a platform that does not provide these more high-level events.

A typical use of such a class is to wire it to a UI framework specific class (such as Qt , see QQuickMapObject in the sample code) and make the controller react to the high level event instead of every low level event the framework can fire.

The use of the TouchGestureRecognizer is optional. A controller implementation can use custom conversion code if needed, for example if you want to manage the low level events yourself and create other high level IInputEvent instances.

The events passed to this class are expected to be defined in device independent pixels.

  • Constructor Details Link icon

    • TouchGestureRecognizer Link icon

      public TouchGestureRecognizer(@NotNull IInputEventCallback callback, @Nullable ITaskScheduler taskScheduler) throws NullPointerException
      Creates a TouchGestureRecognizer The generated high level IInputEvents are passed to the given callback on the UI thread.

      For certain events, like for example a long press, an internal timer is used to determine when an IInputEvent needs to be sent. Due to the use of a timer, it is possible that some work is done on a different thread than the UI thread. The task scheduler can be used to apply the result of the timer on the UI thread.

      Parameters:
      callback - the callback that receive generated IInputEvents. Can not be null.
      taskScheduler - a scheduler allowing the caller to receive some IInputEvents on another thread and resolve them on the UI thread. Can be null. If null, some events won't be emitted.
      Throws:
      NullPointerException - If callback is null.
  • Method Details Link icon

    • finalize Link icon

      protected void finalize()
      Overrides:
      finalize in class Object
    • close Link icon

      public void close()
      Specified by:
      close in interface AutoCloseable
    • onTouchEvent Link icon

      public void onTouchEvent(@NotNull TouchPointEvent touchPointEvent)
      Entry point for the touch events of the gesture recognizer.
      Parameters:
      touchPointEvent - the TouchPointEvent object containing a collection of TouchPoints.
    • setMultiTapInterval Link icon

      public void setMultiTapInterval(long interval)
      Sets the interval (in milliseconds) used to detect multiple taps.

      The default is 400 ms.

      If the interval is set to 0, no multiple taps will be detected.

      Parameters:
      interval - the interval (in milliseconds) used to detect multiple taps.
    • getMultiTapInterval Link icon

      public long getMultiTapInterval()
      Returns the interval (in milliseconds) used to detect multiple taps.
      Returns:
      the interval (in milliseconds) used to detect multiple taps.
    • setDragThreshold Link icon

      public void setDragThreshold(@NotNull ScreenDistance threshold)
      Sets the screen distance that is used as threshold to detect if a drag is performed.

      It means that the input has to move at least that distance before it can be detected as a drag gesture.

      The default drag threshold is a screen distance of 5 mm.

      Parameters:
      threshold - the screen distance threshold
    • getDragThreshold Link icon

      @NotNull public ScreenDistance getDragThreshold()
      Returns the screen distance that is used as threshold to detect if a drag is performed.
      Returns:
      the screen distance that is used as threshold to detect if a drag is performed.
    • setMultiTapThreshold Link icon

      public void setMultiTapThreshold(@NotNull ScreenDistance threshold)
      Sets the screen distance threshold used to detect multiple taps.

      It means that consecutive taps need to be as close as that distance in order to generate an event for a multiple tap.

      Parameters:
      threshold - the distance threshold
    • getMultiTapThreshold Link icon

      @NotNull public ScreenDistance getMultiTapThreshold()
      Returns the screen distance threshold used to detect multiple taps.
      Returns:
      the screen distance threshold used to detect multiple taps.
    • setLongPressThreshold Link icon

      public void setLongPressThreshold(long longPressThreshold)
      Sets the threshold to reach (in milliseconds) before a long press event is sent.

      The default is 700 ms.

      Parameters:
      longPressThreshold - the threshold in milliseconds.
    • getLongPressThreshold Link icon

      public long getLongPressThreshold()
      Returns the threshold to reach (in milliseconds) before a long press event is sent.
      Returns:
      the threshold to reach (in milliseconds) before a long press event is sent.
    • setDpi Link icon

      public void setDpi(double dpi)
      Sets the display pixel density in dots per inch.

      If no value is provided, the platform standard pixel density is assumed.

      Parameters:
      dpi - the pixel density in dots per inch
    • getDpi Link icon

      public double getDpi()
      Returns the display pixel density in dots per inch.
      Returns:
      the display pixel density in dots per inch.
    • setDisplayScale Link icon

      public void setDisplayScale(double scale)
      Sets the display scale factor.

      If no value is provided, a scale factor of 1.0 is assumed.

      Parameters:
      scale - the display scale factor
    • getDisplayScale Link icon

      public double getDisplayScale()
      Returns the display scale factor.
      Returns:
      the display scale factor.