p

gesture

package gesture

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. gesture
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Click(p: Vec2d, timestamp: Long) extends GestureEvent with Product with Serializable
  2. case class Down(p: Vec2d, timestamp: Long) extends PointerState with Product with Serializable
  3. case class Drag(from: Vec2d, fromTimestamp: Long, to: Vec2d, toTimestamp: Long) extends PointerState with Product with Serializable
  4. case class DragAbort(from: Vec2d, fromTimestamp: Long, to: Vec2d, toTimestamp: Long) extends GestureEvent with Product with Serializable
  5. case class DragComplete(from: Vec2d, fromTimestamp: Long, to: Vec2d, toTimestamp: Long, delta: Vec2d) extends GestureEvent with Product with Serializable
  6. case class DragMove(from: Vec2d, fromTimestamp: Long, to: Vec2d, toTimestamp: Long, delta: Vec2d) extends GestureEvent with Product with Serializable
  7. case class DragStart(from: Vec2d, fromTimestamp: Long, to: Vec2d, toTimestamp: Long, delta: Vec2d) extends GestureEvent with Product with Serializable
  8. class GestureAndRegionProcessor[R] extends AnyRef
  9. case class GestureAndRegions[R](gesture: GestureEvent, from: Option[R], to: Option[R]) extends Product with Serializable
  10. sealed trait GestureEvent extends AnyRef
  11. class GestureProcessor extends AnyRef
  12. case class Invalid(msg: String, pointerEvent2: PointerEvent) extends GestureEvent with Product with Serializable
  13. case class PointerDown(p: Vec2d, timestamp: Long) extends PointerEvent with Product with Serializable
  14. sealed trait PointerEvent extends AnyRef
  15. case class PointerLeave(p: Vec2d, timestamp: Long) extends PointerEvent with Product with Serializable
  16. case class PointerMove(p: Vec2d, timestamp: Long) extends PointerEvent with Product with Serializable
  17. sealed trait PointerState extends AnyRef
  18. case class PointerUp(p: Vec2d, timestamp: Long) extends PointerEvent with Product with Serializable
  19. implicit class RichVec2d extends AnyRef
  20. case class Up() extends PointerState with Product with Serializable
  21. type Vec2d = (Double, Double)

Value Members

  1. object Noop extends GestureEvent with Product with Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped