ecore-wl2: Add placeholder touch listener structure and setup touch

listener

Signed-off-by: Chris Michael <cp.michael@samsung.com>
This commit is contained in:
Chris Michael 2015-09-10 12:19:53 -04:00
parent 6869782c27
commit 9009367421
1 changed files with 10 additions and 1 deletions

View File

@ -23,6 +23,15 @@ static const struct wl_keyboard_listener _keyboard_listener =
NULL, // keyboard repeat setup
};
static const struct wl_touch_listener _touch_listener =
{
NULL, // touch down
NULL, // touch up
NULL, // touch motion
NULL, // touch frame
NULL, // touch cancel
};
static const struct wl_data_device_listener _data_listener =
{
NULL, // data offer
@ -76,7 +85,7 @@ _seat_cb_capabilities(void *data, struct wl_seat *seat, enum wl_seat_capability
{
input->wl.touch = wl_seat_get_touch(seat);
wl_touch_set_user_data(input->wl.touch, input);
/* TODO: touch listener */
wl_touch_add_listener(input->wl.touch, &_touch_listener, input);
}
else if (!(caps & WL_SEAT_CAPABILITY_TOUCH) && (input->wl.touch))
{