equal
deleted
inserted
replaced
|
1 /* |
|
2 * This file is part of the TraKERS\Middleware package. |
|
3 * |
|
4 * (c) IRI <http://www.iri.centrepompidou.fr/> |
|
5 * |
|
6 * For the full copyright and license information, please view the LICENSE_MIDDLEWARE |
|
7 * file that was distributed with this source code. |
|
8 */ |
|
9 |
|
10 /* |
|
11 * Projet : TraKERS |
|
12 * Module : MIDDLEWARE |
|
13 * Sous-Module : MainModule/Events |
|
14 * Classe : PushEventArgs |
|
15 * |
|
16 * Auteur : alexandre.bastien@iri.centrepompidou.fr |
|
17 * |
|
18 * Fonctionnalités : Cette classe contient les membres utilisés lors de l'appel au listener correspondant |
|
19 * à l'événement : L'utilisateur a effectué un push. |
|
20 */ |
|
21 |
|
22 using System; |
|
23 using System.Collections.Generic; |
|
24 using System.Linq; |
|
25 using System.Text; |
|
26 using Trakers.MainModule.Gestures; |
|
27 using Trakers.Debug; |
|
28 using Trakers.Communication; |
|
29 |
|
30 namespace Trakers.MainModule.Events |
|
31 { |
|
32 public class PushEventArgs : MainEventArgs |
|
33 { |
|
34 //Direction du push. |
|
35 public readonly PushDetector.Direction direction; |
|
36 //Main ayant réalisé le push. |
|
37 public readonly PushDetector.Hand hand; |
|
38 |
|
39 /* |
|
40 * Constructeur : Il prend l'affichage de debug, le serveur TUIO et la direction du swipe. |
|
41 */ |
|
42 public PushEventArgs(Server _server, DebugWindow _debug, PushDetector.Direction _direction, PushDetector.Hand _hand) : base(_server, _debug) |
|
43 { |
|
44 direction = _direction; |
|
45 hand = _hand; |
|
46 } |
|
47 } |
|
48 } |