de.softpro.signdocmobile.foundations
Interface SignatureCaptureView.ISignatureTraceListener

Enclosing class:
SignatureCaptureView

public static interface SignatureCaptureView.ISignatureTraceListener

Listener that indicates when a Tablet event occurs

See Also:
setTraceListener

Method Summary
 void traceBegin(TabletPoint p)
          The callback function that is called when the trace begins
 void traceEnd(TabletPoint p)
          The callback function that is called when the trace ends
 void traceMove(TabletPoint p, java.util.List<TabletPoint> historicalPoints)
          The callback function that is called when a point is added to a trace
 

Method Detail

traceBegin

void traceBegin(TabletPoint p)
The callback function that is called when the trace begins

Parameters:
p - Tablet point in screen coordinates where trace begins

traceEnd

void traceEnd(TabletPoint p)
The callback function that is called when the trace ends

Parameters:
p - Tablet point in screen coordinates where trace ends

traceMove

void traceMove(TabletPoint p,
               java.util.List<TabletPoint> historicalPoints)
The callback function that is called when a point is added to a trace

Parameters:
p - Tablet point in screen coordinates
historicalPoints - list of points that occurred between this event and the previous event.