Exemple #1
0
 public FinishedArgs(Gesture sender, bool interrupted, Vector2 start, Vector2 position)
     : base(sender)
 {
     this.start       = start;
     this.position    = position;
     this.interrupted = interrupted;
 }
Exemple #2
0
 public FlingArgs(Gesture sender, State state, Vector2 start, Vector2 position)
     : base(sender)
 {
     this.start    = start;
     this.position = position;
     this.state    = state;
 }
Exemple #3
0
 public PanArgs(Gesture sender, State state, Vector2 start, Vector2 position, Vector2 delta)
     : base(sender)
 {
     this.state    = state;
     this.start    = start;
     this.position = position;
     this.delta    = delta;
 }
Exemple #4
0
 public TapArgs(Gesture sender, Vector2 position)
     : base(sender)
 {
     this.position = position;
 }
Exemple #5
0
 public TouchArg(Gesture sender)
 {
     handled     = true;
     this.sender = sender;
 }
Exemple #6
0
 public LongPressArgs(Gesture sender, State state, Vector2 position)
     : base(sender)
 {
     this.state    = state;
     this.position = position;
 }