summaryrefslogtreecommitdiff
path: root/src/grail-gestures.h
diff options
context:
space:
mode:
authorHenrik Rydberg <rydberg@euromail.se>2010-09-21 11:14:00 +0200
committerHenrik Rydberg <rydberg@euromail.se>2010-09-21 12:56:17 +0200
commit07e097727f7bba8afc1abe29b1660a253ac64dad (patch)
treeea92d6a62cf3f63674f758f7d14a3be0635acb6e /src/grail-gestures.h
parentd9a9cafc00cf1ccfeb72c9d86644144687884ef4 (diff)
Add tap state to the tapping model
Add the ability to read off the tap state in the tapping model. Useful for emulation i lieu of tapping gestures. Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'src/grail-gestures.h')
-rw-r--r--src/grail-gestures.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/grail-gestures.h b/src/grail-gestures.h
index 36d8e78..27108e9 100644
--- a/src/grail-gestures.h
+++ b/src/grail-gestures.h
@@ -99,7 +99,7 @@ int gru_winrotate(struct grail *ge,
99struct tapping_model { 99struct tapping_model {
100 grail_time_t start, end; 100 grail_time_t start, end;
101 int mintouch, maxtouch; 101 int mintouch, maxtouch;
102 int active, gid; 102 int active, gid, tap;
103 int nprop; 103 int nprop;
104 grail_prop_t prop[DIM_GRAIL_PROP]; 104 grail_prop_t prop[DIM_GRAIL_PROP];
105}; 105};