onLongPressEnd method

bool onLongPressEnd()

Handles long press end event. Returns true if the long press end was handled by a drawing tool, false otherwise.

Implementation

bool onLongPressEnd() {
  // Default implementation returns false
  // Subclasses can override this to provide specific long press end handling logic
  return false;
}