2008-12-02 15:15:01 -05:00
|
|
|
/*
|
|
|
|
|
* Copyright © 2008 Kristian Høgsberg
|
|
|
|
|
*
|
|
|
|
|
* Permission to use, copy, modify, distribute, and sell this software and its
|
|
|
|
|
* documentation for any purpose is hereby granted without fee, provided that
|
|
|
|
|
* the above copyright notice appear in all copies and that both that copyright
|
|
|
|
|
* notice and this permission notice appear in supporting documentation, and
|
|
|
|
|
* that the name of the copyright holders not be used in advertising or
|
|
|
|
|
* publicity pertaining to distribution of the software without specific,
|
|
|
|
|
* written prior permission. The copyright holders make no representations
|
|
|
|
|
* about the suitability of this software for any purpose. It is provided "as
|
|
|
|
|
* is" without express or implied warranty.
|
|
|
|
|
*
|
|
|
|
|
* THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
|
|
|
|
|
* INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
|
|
|
|
|
* EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
|
|
|
|
|
* CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
|
|
|
|
|
* DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
|
|
|
|
|
* TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
|
|
|
|
|
* OF THIS SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
2008-09-30 09:46:10 -04:00
|
|
|
#ifndef WAYLAND_H
|
|
|
|
|
#define WAYLAND_H
|
|
|
|
|
|
2010-06-10 13:48:44 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-09-30 09:46:10 -04:00
|
|
|
#include <stdint.h>
|
2008-11-23 23:41:08 -05:00
|
|
|
#include "wayland-util.h"
|
2010-08-03 09:26:44 -04:00
|
|
|
#include "wayland-server-protocol.h"
|
2008-11-08 15:39:41 -05:00
|
|
|
|
2008-09-30 09:46:10 -04:00
|
|
|
enum {
|
|
|
|
|
WL_EVENT_READABLE = 0x01,
|
|
|
|
|
WL_EVENT_WRITEABLE = 0x02
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_event_loop;
|
|
|
|
|
struct wl_event_source;
|
2011-04-22 12:06:34 -04:00
|
|
|
typedef int (*wl_event_loop_fd_func_t)(int fd, uint32_t mask, void *data);
|
|
|
|
|
typedef int (*wl_event_loop_timer_func_t)(void *data);
|
|
|
|
|
typedef int (*wl_event_loop_signal_func_t)(int signal_number, void *data);
|
2008-10-11 19:21:35 -04:00
|
|
|
typedef void (*wl_event_loop_idle_func_t)(void *data);
|
2008-09-30 09:46:10 -04:00
|
|
|
|
|
|
|
|
struct wl_event_loop *wl_event_loop_create(void);
|
|
|
|
|
void wl_event_loop_destroy(struct wl_event_loop *loop);
|
|
|
|
|
struct wl_event_source *wl_event_loop_add_fd(struct wl_event_loop *loop,
|
|
|
|
|
int fd, uint32_t mask,
|
2008-10-11 19:21:35 -04:00
|
|
|
wl_event_loop_fd_func_t func,
|
2008-09-30 09:46:10 -04:00
|
|
|
void *data);
|
2008-11-28 18:35:25 -05:00
|
|
|
int wl_event_source_fd_update(struct wl_event_source *source, uint32_t mask);
|
|
|
|
|
struct wl_event_source *wl_event_loop_add_timer(struct wl_event_loop *loop,
|
|
|
|
|
wl_event_loop_timer_func_t func,
|
|
|
|
|
void *data);
|
2008-12-19 00:22:18 -05:00
|
|
|
struct wl_event_source *
|
|
|
|
|
wl_event_loop_add_signal(struct wl_event_loop *loop,
|
|
|
|
|
int signal_number,
|
|
|
|
|
wl_event_loop_signal_func_t func,
|
|
|
|
|
void *data);
|
|
|
|
|
|
2008-11-28 18:35:25 -05:00
|
|
|
int wl_event_source_timer_update(struct wl_event_source *source,
|
|
|
|
|
int ms_delay);
|
|
|
|
|
int wl_event_source_remove(struct wl_event_source *source);
|
2011-04-22 12:06:34 -04:00
|
|
|
void wl_event_source_check(struct wl_event_source *source);
|
2008-11-28 18:35:25 -05:00
|
|
|
|
2008-10-07 10:10:36 -04:00
|
|
|
|
2010-11-19 10:47:28 -05:00
|
|
|
int wl_event_loop_dispatch(struct wl_event_loop *loop, int timeout);
|
2008-10-11 19:21:35 -04:00
|
|
|
struct wl_event_source *wl_event_loop_add_idle(struct wl_event_loop *loop,
|
|
|
|
|
wl_event_loop_idle_func_t func,
|
|
|
|
|
void *data);
|
2010-12-01 09:50:16 -05:00
|
|
|
int wl_event_loop_get_fd(struct wl_event_loop *loop);
|
2008-09-30 09:46:10 -04:00
|
|
|
|
|
|
|
|
struct wl_client;
|
2008-10-07 10:10:36 -04:00
|
|
|
struct wl_display;
|
2008-12-11 23:18:45 -05:00
|
|
|
struct wl_input_device;
|
2008-10-07 10:10:36 -04:00
|
|
|
|
2008-12-05 11:13:50 -05:00
|
|
|
struct wl_display *wl_display_create(void);
|
2010-12-01 15:36:20 -05:00
|
|
|
void wl_display_destroy(struct wl_display *display);
|
2008-12-05 11:13:50 -05:00
|
|
|
struct wl_event_loop *wl_display_get_event_loop(struct wl_display *display);
|
2010-12-01 15:36:20 -05:00
|
|
|
int wl_display_add_socket(struct wl_display *display, const char *name);
|
|
|
|
|
void wl_display_terminate(struct wl_display *display);
|
2008-12-05 11:13:50 -05:00
|
|
|
void wl_display_run(struct wl_display *display);
|
|
|
|
|
|
2011-04-18 12:35:01 -04:00
|
|
|
void wl_display_add_object(struct wl_display *display,
|
|
|
|
|
struct wl_object *object);
|
2008-12-21 23:37:12 -05:00
|
|
|
|
2011-04-18 12:35:01 -04:00
|
|
|
typedef void (*wl_global_bind_func_t)(struct wl_client *client,
|
|
|
|
|
struct wl_object *global,
|
|
|
|
|
uint32_t version);
|
2008-12-21 23:37:12 -05:00
|
|
|
|
2011-04-18 12:35:01 -04:00
|
|
|
int wl_display_add_global(struct wl_display *display,
|
|
|
|
|
struct wl_object *object,
|
|
|
|
|
wl_global_bind_func_t func);
|
2008-12-10 13:16:50 -05:00
|
|
|
|
2011-06-14 10:35:46 +02:00
|
|
|
int wl_display_remove_global(struct wl_display *display,
|
|
|
|
|
struct wl_object *object);
|
|
|
|
|
|
2011-04-11 09:15:09 -04:00
|
|
|
struct wl_client *wl_client_create(struct wl_display *display, int fd);
|
2010-08-05 17:44:31 -04:00
|
|
|
void wl_client_destroy(struct wl_client *client);
|
2011-05-11 10:57:06 -04:00
|
|
|
void wl_client_post_error(struct wl_client *client, struct wl_object *object,
|
|
|
|
|
uint32_t code, const char *msg, ...);
|
2010-09-02 20:55:16 -04:00
|
|
|
void wl_client_post_no_memory(struct wl_client *client);
|
|
|
|
|
void wl_client_post_global(struct wl_client *client, struct wl_object *object);
|
2011-06-29 11:43:11 -04:00
|
|
|
void wl_client_flush(struct wl_client *client);
|
2010-08-05 17:44:31 -04:00
|
|
|
|
2010-12-08 15:12:58 -05:00
|
|
|
struct wl_visual {
|
|
|
|
|
struct wl_object object;
|
|
|
|
|
};
|
|
|
|
|
|
2011-03-08 11:32:24 +01:00
|
|
|
struct wl_shm_callbacks {
|
|
|
|
|
void (*buffer_created)(struct wl_buffer *buffer);
|
|
|
|
|
|
|
|
|
|
void (*buffer_damaged)(struct wl_buffer *buffer,
|
|
|
|
|
int32_t x, int32_t y,
|
|
|
|
|
int32_t width, int32_t height);
|
|
|
|
|
|
|
|
|
|
void (*buffer_destroyed)(struct wl_buffer *buffer);
|
|
|
|
|
};
|
|
|
|
|
|
2008-12-15 20:35:24 -05:00
|
|
|
struct wl_compositor {
|
2010-12-01 17:07:41 -05:00
|
|
|
struct wl_object object;
|
2010-12-08 15:12:58 -05:00
|
|
|
struct wl_visual argb_visual;
|
|
|
|
|
struct wl_visual premultiplied_argb_visual;
|
|
|
|
|
struct wl_visual rgb_visual;
|
2008-12-15 20:35:24 -05:00
|
|
|
};
|
|
|
|
|
|
2010-08-09 14:43:33 -04:00
|
|
|
struct wl_resource {
|
2010-12-01 17:07:41 -05:00
|
|
|
struct wl_object object;
|
2010-08-09 14:43:33 -04:00
|
|
|
void (*destroy)(struct wl_resource *resource,
|
|
|
|
|
struct wl_client *client);
|
2009-09-18 17:00:37 -04:00
|
|
|
struct wl_list link;
|
2011-05-06 17:09:51 +02:00
|
|
|
struct wl_list destroy_listener_list;
|
2008-12-15 20:35:24 -05:00
|
|
|
};
|
|
|
|
|
|
2010-08-09 14:43:33 -04:00
|
|
|
struct wl_buffer {
|
2010-12-01 17:07:41 -05:00
|
|
|
struct wl_resource resource;
|
2011-05-10 12:01:00 +02:00
|
|
|
struct wl_client *client;
|
2010-10-06 21:17:40 -04:00
|
|
|
struct wl_visual *visual;
|
|
|
|
|
int32_t width, height;
|
2011-05-10 12:01:00 +02:00
|
|
|
uint32_t busy_count;
|
2011-03-08 11:32:24 +01:00
|
|
|
void *user_data;
|
2010-08-09 14:43:33 -04:00
|
|
|
};
|
|
|
|
|
|
2010-12-06 16:43:16 -05:00
|
|
|
struct wl_listener {
|
|
|
|
|
struct wl_list link;
|
|
|
|
|
void (*func)(struct wl_listener *listener,
|
2011-05-06 17:09:51 +02:00
|
|
|
struct wl_resource *resource, uint32_t time);
|
2010-12-06 16:43:16 -05:00
|
|
|
};
|
|
|
|
|
|
2010-08-09 14:43:33 -04:00
|
|
|
struct wl_surface {
|
2010-12-01 17:07:41 -05:00
|
|
|
struct wl_resource resource;
|
2010-08-09 14:43:33 -04:00
|
|
|
struct wl_client *client;
|
|
|
|
|
};
|
|
|
|
|
|
2010-12-07 14:58:57 -05:00
|
|
|
struct wl_grab;
|
|
|
|
|
struct wl_grab_interface {
|
|
|
|
|
void (*motion)(struct wl_grab *grab,
|
|
|
|
|
uint32_t time, int32_t x, int32_t y);
|
2010-12-08 11:07:57 -05:00
|
|
|
void (*button)(struct wl_grab *grab,
|
|
|
|
|
uint32_t time, int32_t button, int32_t state);
|
2010-12-07 14:58:57 -05:00
|
|
|
void (*end)(struct wl_grab *grab, uint32_t time);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_grab {
|
|
|
|
|
const struct wl_grab_interface *interface;
|
|
|
|
|
struct wl_input_device *input_device;
|
|
|
|
|
};
|
|
|
|
|
|
2010-12-08 09:48:52 -05:00
|
|
|
struct wl_input_device {
|
|
|
|
|
struct wl_object object;
|
|
|
|
|
struct wl_compositor *compositor;
|
|
|
|
|
struct wl_surface *pointer_focus;
|
|
|
|
|
struct wl_surface *keyboard_focus;
|
|
|
|
|
struct wl_array keys;
|
|
|
|
|
uint32_t pointer_focus_time;
|
|
|
|
|
uint32_t keyboard_focus_time;
|
|
|
|
|
struct wl_listener pointer_focus_listener;
|
|
|
|
|
struct wl_listener keyboard_focus_listener;
|
|
|
|
|
|
|
|
|
|
int32_t x, y;
|
|
|
|
|
struct wl_grab *grab;
|
|
|
|
|
struct wl_grab motion_grab;
|
|
|
|
|
uint32_t grab_time;
|
|
|
|
|
int32_t grab_x, grab_y;
|
|
|
|
|
uint32_t grab_button;
|
|
|
|
|
struct wl_listener grab_listener;
|
|
|
|
|
};
|
2010-12-07 14:58:57 -05:00
|
|
|
|
2010-09-02 20:22:42 -04:00
|
|
|
struct wl_drag_offer {
|
2010-12-01 17:07:41 -05:00
|
|
|
struct wl_object object;
|
2010-09-02 20:22:42 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_drag {
|
|
|
|
|
struct wl_resource resource;
|
2010-12-07 14:58:57 -05:00
|
|
|
struct wl_grab grab;
|
2010-09-02 20:22:42 -04:00
|
|
|
struct wl_drag_offer drag_offer;
|
2010-08-17 21:23:10 -04:00
|
|
|
struct wl_surface *source;
|
2010-12-06 17:33:11 -05:00
|
|
|
struct wl_surface *drag_focus;
|
2010-08-17 21:23:10 -04:00
|
|
|
struct wl_client *target;
|
|
|
|
|
int32_t x, y, sx, sy;
|
|
|
|
|
struct wl_array types;
|
|
|
|
|
const char *type;
|
2010-09-02 20:22:42 -04:00
|
|
|
uint32_t pointer_focus_time;
|
2010-12-06 17:33:11 -05:00
|
|
|
struct wl_listener drag_focus_listener;
|
2010-08-17 21:23:10 -04:00
|
|
|
};
|
|
|
|
|
|
2011-01-18 09:08:53 -05:00
|
|
|
struct wl_selection_offer {
|
|
|
|
|
struct wl_object object;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_selection {
|
|
|
|
|
struct wl_resource resource;
|
|
|
|
|
struct wl_client *client;
|
|
|
|
|
struct wl_input_device *input_device;
|
|
|
|
|
struct wl_selection_offer selection_offer;
|
|
|
|
|
struct wl_surface *selection_focus;
|
|
|
|
|
struct wl_client *target;
|
|
|
|
|
struct wl_array types;
|
|
|
|
|
struct wl_listener selection_focus_listener;
|
|
|
|
|
};
|
|
|
|
|
|
2008-12-21 23:37:12 -05:00
|
|
|
void
|
|
|
|
|
wl_client_post_event(struct wl_client *client,
|
|
|
|
|
struct wl_object *sender,
|
|
|
|
|
uint32_t event, ...);
|
|
|
|
|
|
2008-12-15 20:35:24 -05:00
|
|
|
int
|
|
|
|
|
wl_display_set_compositor(struct wl_display *display,
|
|
|
|
|
struct wl_compositor *compositor,
|
|
|
|
|
const struct wl_compositor_interface *implementation);
|
2008-10-07 10:10:36 -04:00
|
|
|
|
2008-12-15 20:35:24 -05:00
|
|
|
void
|
2011-03-14 12:03:13 +01:00
|
|
|
wl_display_post_frame(struct wl_display *display, struct wl_surface *surface,
|
|
|
|
|
uint32_t msecs);
|
2008-10-07 10:10:36 -04:00
|
|
|
|
2010-08-09 14:43:33 -04:00
|
|
|
void
|
|
|
|
|
wl_client_add_resource(struct wl_client *client,
|
|
|
|
|
struct wl_resource *resource);
|
|
|
|
|
|
2010-08-17 21:23:10 -04:00
|
|
|
struct wl_display *
|
|
|
|
|
wl_client_get_display(struct wl_client *client);
|
|
|
|
|
|
2010-08-09 14:43:33 -04:00
|
|
|
void
|
2011-05-06 17:09:51 +02:00
|
|
|
wl_resource_destroy(struct wl_resource *resource,
|
|
|
|
|
struct wl_client *client, uint32_t time);
|
2010-08-09 14:43:33 -04:00
|
|
|
|
2010-12-06 21:35:19 -05:00
|
|
|
void
|
2010-12-08 09:48:52 -05:00
|
|
|
wl_input_device_init(struct wl_input_device *device,
|
|
|
|
|
struct wl_compositor *compositor);
|
2010-12-06 21:35:19 -05:00
|
|
|
|
2010-12-01 10:17:47 -05:00
|
|
|
void
|
|
|
|
|
wl_input_device_set_pointer_focus(struct wl_input_device *device,
|
|
|
|
|
struct wl_surface *surface,
|
|
|
|
|
uint32_t time,
|
|
|
|
|
int32_t x, int32_t y,
|
|
|
|
|
int32_t sx, int32_t sy);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
wl_input_device_set_keyboard_focus(struct wl_input_device *device,
|
|
|
|
|
struct wl_surface *surface,
|
|
|
|
|
uint32_t time);
|
|
|
|
|
|
2011-01-05 17:34:54 -05:00
|
|
|
void
|
|
|
|
|
wl_input_device_end_grab(struct wl_input_device *device, uint32_t time);
|
|
|
|
|
void
|
|
|
|
|
wl_input_device_start_grab(struct wl_input_device *device,
|
|
|
|
|
struct wl_grab *grab,
|
|
|
|
|
uint32_t button, uint32_t time);
|
|
|
|
|
int
|
|
|
|
|
wl_input_device_update_grab(struct wl_input_device *device,
|
|
|
|
|
struct wl_grab *grab,
|
|
|
|
|
struct wl_surface *surface, uint32_t time);
|
|
|
|
|
|
2011-03-08 11:32:24 +01:00
|
|
|
struct wl_shm;
|
|
|
|
|
|
|
|
|
|
void *
|
|
|
|
|
wl_shm_buffer_get_data(struct wl_buffer *buffer);
|
|
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
|
wl_shm_buffer_get_stride(struct wl_buffer *buffer);
|
|
|
|
|
|
|
|
|
|
struct wl_buffer *
|
|
|
|
|
wl_shm_buffer_create(struct wl_shm *shm, int width, int height,
|
|
|
|
|
int stride, struct wl_visual *visual,
|
|
|
|
|
void *data);
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
wl_buffer_is_shm(struct wl_buffer *buffer);
|
|
|
|
|
|
|
|
|
|
struct wl_shm *
|
|
|
|
|
wl_shm_init(struct wl_display *display,
|
|
|
|
|
const struct wl_shm_callbacks *callbacks);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
wl_shm_finish(struct wl_shm *shm);
|
|
|
|
|
|
2010-12-08 15:12:58 -05:00
|
|
|
int
|
|
|
|
|
wl_compositor_init(struct wl_compositor *compositor,
|
|
|
|
|
const struct wl_compositor_interface *interface,
|
|
|
|
|
struct wl_display *display);
|
2010-12-01 10:17:47 -05:00
|
|
|
|
2010-06-10 13:48:44 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-09-30 09:46:10 -04:00
|
|
|
#endif
|