diff options
| author | Henrik Rydberg <rydberg@euromail.se> | 2010-06-15 20:24:14 +0200 |
|---|---|---|
| committer | Henrik Rydberg <rydberg@euromail.se> | 2010-06-16 02:28:08 +0200 |
| commit | 78085b21f2dc7b1d49a0c54ab56b567fc195d440 (patch) | |
| tree | 3ae649c25b380114ce2eaa5463350fb9b29ee78c /include | |
| parent | 4583da1ad81b59b2a8cd2ae51c32b1bc8d32f1c4 (diff) | |
refactor: Simplify capabilities
Use the generated abs2mt mapping to simplify the MT device
capabilities.
Signed-off-by: Henrik Rydberg <rydberg@euromail.se>
Diffstat (limited to 'include')
| -rw-r--r-- | include/mtdev-caps.h | 23 | ||||
| -rw-r--r-- | include/mtstate.h | 3 |
2 files changed, 9 insertions, 17 deletions
diff --git a/include/mtdev-caps.h b/include/mtdev-caps.h index 8f88404..4460eca 100644 --- a/include/mtdev-caps.h +++ b/include/mtdev-caps.h | |||
| @@ -23,25 +23,18 @@ | |||
| 23 | #define MTDEV_CAPS_H | 23 | #define MTDEV_CAPS_H |
| 24 | 24 | ||
| 25 | #include "common.h" | 25 | #include "common.h" |
| 26 | #include "abs2mt.h" | ||
| 27 | #include "mtbit.h" | ||
| 26 | 28 | ||
| 27 | struct Capabilities { | 29 | struct Capabilities { |
| 28 | struct input_id devid; | 30 | struct input_id devid; |
| 29 | char devname[32]; | 31 | char devname[32]; |
| 30 | int has_left, has_middle; | 32 | int has_left, has_middle, has_right; |
| 31 | int has_right, has_mtdata, has_ibt; | 33 | int has_mtdata, has_ibt; |
| 32 | int has_touch_major, has_touch_minor; | 34 | int has_slot, nullid; |
| 33 | int has_width_major, has_width_minor; | 35 | int has_abs[MT_ABS_SIZE]; |
| 34 | int has_orientation, has_dummy; | 36 | struct input_absinfo slot; |
| 35 | int has_position_x, has_position_y; | 37 | struct input_absinfo abs[MT_ABS_SIZE]; |
| 36 | struct input_absinfo abs_touch_major; | ||
| 37 | struct input_absinfo abs_touch_minor; | ||
| 38 | struct input_absinfo abs_width_major; | ||
| 39 | struct input_absinfo abs_width_minor; | ||
| 40 | struct input_absinfo abs_orientation; | ||
| 41 | struct input_absinfo abs_position_x; | ||
| 42 | struct input_absinfo abs_position_y; | ||
| 43 | int xfuzz, yfuzz, wfuzz; | ||
| 44 | int yclick; | ||
| 45 | }; | 38 | }; |
| 46 | 39 | ||
| 47 | int read_capabilities(struct Capabilities *cap, int fd); | 40 | int read_capabilities(struct Capabilities *cap, int fd); |
diff --git a/include/mtstate.h b/include/mtstate.h index ac0b18d..b5f5dd1 100644 --- a/include/mtstate.h +++ b/include/mtstate.h | |||
| @@ -54,8 +54,7 @@ static inline int center_dist2(const struct MTFinger *a, | |||
| 54 | 54 | ||
| 55 | static inline int center_maxdist2(const struct Capabilities *caps) | 55 | static inline int center_maxdist2(const struct Capabilities *caps) |
| 56 | { | 56 | { |
| 57 | return dist2(caps->abs_position_x.maximum - get_cap_xmid(caps), | 57 | return dist2(get_cap_xsize(caps) / 2, get_cap_ysize(caps) / 2); |
| 58 | caps->abs_position_y.maximum - get_cap_ymid(caps)); | ||
| 59 | } | 58 | } |
| 60 | 59 | ||
| 61 | #endif | 60 | #endif |
