blob: 7ff340c08982d88b3fc65e760f76f263d5b92614 [file] [log] [blame]
Kristian Høgsberg82f6e8a2008-12-19 13:47:53 -05001/*
2 * Copyright © 2008 Kristian Høgsberg
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
19#ifndef _WAYLAND_SYSTEM_COMPOSITOR_H_
20#define _WAYLAND_SYSTEM_COMPOSITOR_H_
21
22struct wlsc_input_device;
23void
24wlsc_device_get_position(struct wlsc_input_device *device, int32_t *x, int32_t *y);
25void
26notify_motion(struct wlsc_input_device *device, int x, int y);
27void
28notify_button(struct wlsc_input_device *device, int32_t button, int32_t state);
29void
30notify_key(struct wlsc_input_device *device, uint32_t key, uint32_t state);
31
32struct evdev_input_device *
33evdev_input_device_create(struct wlsc_input_device *device,
34 struct wl_display *display, const char *path);
35
36#endif