summaryrefslogtreecommitdiff
path: root/src/grail-recognizer.h
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-08-10 11:47:00 +0100
committerHenrik Rydberg <rydberg@euromail.se>2010-08-10 15:04:18 +0100
commit7be96df1c903c11711336c5ad1859b347ae4b661 (patch)
treea5420af7613448c12e34ade0945b687ea9879836 /src/grail-recognizer.h
parentfff2c89c1651f0c5aef75510f915a999700c31b9 (diff)
api: Rename gestures to conform to design docs
Use the names drag, pinch and rotate, and remove the combo gesture. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/grail-recognizer.h')
-rw-r--r--src/grail-recognizer.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/grail-recognizer.h b/src/grail-recognizer.h
index 11b44ce..1c36819 100644
--- a/src/grail-recognizer.h
+++ b/src/grail-recognizer.h
@@ -28,10 +28,9 @@
28struct gesture_recognizer { 28struct gesture_recognizer {
29 struct touch_frame frame; 29 struct touch_frame frame;
30 struct move_model move; 30 struct move_model move;
31 struct combo_model pan; 31 struct combo_model drag;
32 struct combo_model pinch; 32 struct combo_model pinch;
33 struct combo_model rotate; 33 struct combo_model rotate;
34 struct combo_model combo;
35 struct tapping_model tapping; 34 struct tapping_model tapping;
36 int pointer_gesture; 35 int pointer_gesture;
37}; 36};