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 : SwipeListener |
|
15 * |
|
16 * Auteur : alexandre.bastien@iri.centrepompidou.fr |
|
17 * |
|
18 * Fonctionnalités : Ce listener écoute l'événement du type : L'utilisateur a effectué un swipe. |
|
19 * Il contient le code a être éxecuté au cas où cet événement survient. |
|
20 */ |
|
21 |
|
22 using System; |
|
23 using System.Collections.Generic; |
|
24 using System.Linq; |
|
25 using System.Text; |
|
26 using System.Threading; |
|
27 |
|
28 namespace Trakers.MainModule.Events |
|
29 { |
|
30 public class SwipeListener |
|
31 { |
|
32 /* |
|
33 * Méthode appelée lorsque on a l'événement : L'utilisateur a effectué un swipe. |
|
34 */ |
|
35 public void showAndSend(object o, SwipeEventArgs e) |
|
36 { |
|
37 String code = ""; |
|
38 if (e.direction == Gestures.SwipeDetector.Direction.LEFT) |
|
39 code = "SWIPE-LEFT"; |
|
40 else |
|
41 code = "SWIPE-RIGHT"; |
|
42 |
|
43 e.debug.showGesture(code); |
|
44 e.server.GesturePerformed(code); |
|
45 } |
|
46 } |
|
47 } |