Kristian Høgsberg | 82f6e8a | 2008-12-19 13:47:53 -0500 | [diff] [blame] | 1 | /* |
| 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 | |
| 22 | struct wlsc_input_device; |
| 23 | void |
| 24 | wlsc_device_get_position(struct wlsc_input_device *device, int32_t *x, int32_t *y); |
| 25 | void |
| 26 | notify_motion(struct wlsc_input_device *device, int x, int y); |
| 27 | void |
| 28 | notify_button(struct wlsc_input_device *device, int32_t button, int32_t state); |
| 29 | void |
| 30 | notify_key(struct wlsc_input_device *device, uint32_t key, uint32_t state); |
| 31 | |
| 32 | struct evdev_input_device * |
| 33 | evdev_input_device_create(struct wlsc_input_device *device, |
| 34 | struct wl_display *display, const char *path); |
| 35 | |
| 36 | #endif |