diff options
Diffstat (limited to 'include/gesture-dev.h')
| -rw-r--r-- | include/gesture-dev.h | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/include/gesture-dev.h b/include/gesture-dev.h new file mode 100644 index 0000000..635fc2f --- /dev/null +++ b/include/gesture-dev.h | |||
| @@ -0,0 +1,47 @@ | |||
| 1 | /***************************************************************************** | ||
| 2 | * | ||
| 3 | * grail - Gesture Recognition And Instantiation Library | ||
| 4 | * | ||
| 5 | * Copyright (C) 2010 Canonical Ltd. | ||
| 6 | * | ||
| 7 | * This program is free software: you can redistribute it and/or modify it | ||
| 8 | * under the terms of the GNU General Public License as published by the | ||
| 9 | * Free Software Foundation, either version 3 of the License, or (at your | ||
| 10 | * option) any later version. | ||
| 11 | * | ||
| 12 | * This program is distributed in the hope that it will be useful, but | ||
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU | ||
| 15 | * General Public License for more details. | ||
| 16 | * | ||
| 17 | * You should have received a copy of the GNU General Public License along | ||
| 18 | * with this program. If not, see <http://www.gnu.org/licenses/>. | ||
| 19 | * | ||
| 20 | * Authors: | ||
| 21 | * Henrik Rydberg <rydberg@bitmath.org> | ||
| 22 | * | ||
| 23 | ****************************************************************************/ | ||
| 24 | |||
| 25 | #ifndef _GRAIL_GESTURE_DEV_H | ||
| 26 | #define _GRAIL_GESTURE_DEV_H | ||
| 27 | |||
| 28 | #include <gesture-client.h> | ||
| 29 | |||
| 30 | struct gesture_dev { | ||
| 31 | struct gedev_impl *impl; | ||
| 32 | void *priv; | ||
| 33 | }; | ||
| 34 | |||
| 35 | int gedev_init(struct gesture_dev *dev, void *priv); | ||
| 36 | int gedev_attach_client(struct gesture_dev *dev, | ||
| 37 | struct gesture_client *client); | ||
| 38 | |||
| 39 | void gedev_flag(struct gesture_dev *dev, const struct gesture_flag *flag); | ||
| 40 | void gedev_event(struct gesture_dev *dev, const struct gesture_event *ev); | ||
| 41 | void gedev_sync(struct gesture_dev *dev); | ||
| 42 | |||
| 43 | void gedev_detach_client(struct gesture_dev *dev, | ||
| 44 | struct gesture_client *client); | ||
| 45 | void gedev_destroy(struct gesture_dev *dev); | ||
| 46 | |||
| 47 | #endif | ||
