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"
|
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;
|
2008-10-11 19:21:35 -04:00
|
|
|
typedef void (*wl_event_loop_fd_func_t)(int fd, uint32_t mask, void *data);
|
2008-11-28 18:35:25 -05:00
|
|
|
typedef void (*wl_event_loop_timer_func_t)(void *data);
|
2008-12-19 00:22:18 -05:00
|
|
|
typedef void (*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);
|
|
|
|
|
2008-10-07 10:10:36 -04:00
|
|
|
|
2008-09-30 09:46:10 -04:00
|
|
|
int wl_event_loop_wait(struct wl_event_loop *loop);
|
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);
|
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-10-07 10:10:36 -04:00
|
|
|
struct wl_map {
|
|
|
|
int32_t x, y, width, height;
|
|
|
|
};
|
|
|
|
|
2008-12-05 11:13:50 -05:00
|
|
|
struct wl_display *wl_display_create(void);
|
|
|
|
struct wl_event_loop *wl_display_get_event_loop(struct wl_display *display);
|
2008-12-07 15:22:22 -05:00
|
|
|
int wl_display_add_socket(struct wl_display *display, const char *name, size_t name_size);
|
2008-12-05 11:13:50 -05:00
|
|
|
void wl_display_run(struct wl_display *display);
|
|
|
|
|
2008-12-21 21:50:23 -05:00
|
|
|
void wl_display_add_object(struct wl_display *display, struct wl_object *object);
|
2008-12-21 23:37:12 -05:00
|
|
|
|
|
|
|
typedef void (*wl_client_connect_func_t)(struct wl_client *client, struct wl_object *global);
|
|
|
|
|
|
|
|
int wl_display_add_global(struct wl_display *display, struct wl_object *object, wl_client_connect_func_t func);
|
2008-12-10 13:16:50 -05:00
|
|
|
|
2008-12-15 20:35:24 -05:00
|
|
|
struct wl_compositor {
|
|
|
|
struct wl_object base;
|
2010-06-08 20:34:11 -04:00
|
|
|
const char *device;
|
2008-12-15 20:35:24 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct wl_surface {
|
|
|
|
struct wl_object base;
|
|
|
|
struct wl_client *client;
|
2009-09-18 17:00:37 -04:00
|
|
|
struct wl_list link;
|
2008-12-15 20:35:24 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
struct wl_compositor_interface {
|
|
|
|
void (*create_surface)(struct wl_client *client,
|
|
|
|
struct wl_compositor *compositor, uint32_t id);
|
|
|
|
void (*commit)(struct wl_client *client,
|
|
|
|
struct wl_compositor *compositor, uint32_t key);
|
|
|
|
};
|
|
|
|
|
|
|
|
struct wl_surface_interface {
|
|
|
|
void (*destroy)(struct wl_client *client,
|
|
|
|
struct wl_surface *surface);
|
|
|
|
void (*attach)(struct wl_client *client,
|
|
|
|
struct wl_surface *surface, uint32_t name,
|
2008-12-18 17:55:33 -05:00
|
|
|
uint32_t width, uint32_t height, uint32_t stride,
|
|
|
|
struct wl_object *visual);
|
2008-12-15 20:35:24 -05:00
|
|
|
void (*map)(struct wl_client *client,
|
|
|
|
struct wl_surface *surface,
|
|
|
|
int32_t x, int32_t y, int32_t width, int32_t height);
|
|
|
|
void (*damage)(struct wl_client *client, struct wl_surface *surface,
|
|
|
|
int32_t x, int32_t y, int32_t width, int32_t height);
|
|
|
|
};
|
|
|
|
|
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-10 10:42:04 -05:00
|
|
|
void
|
2008-12-10 13:16:50 -05:00
|
|
|
wl_surface_post_event(struct wl_surface *surface,
|
|
|
|
struct wl_object *sender,
|
|
|
|
uint32_t event, ...);
|
2008-11-02 10:12:29 -05:00
|
|
|
|
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
|
|
|
int
|
|
|
|
wl_client_add_surface(struct wl_client *client,
|
|
|
|
struct wl_surface *surface,
|
|
|
|
const struct wl_surface_interface *implementation,
|
|
|
|
uint32_t id);
|
|
|
|
|
2009-09-18 17:00:37 -04:00
|
|
|
void
|
|
|
|
wl_client_remove_surface(struct wl_client *client,
|
|
|
|
struct wl_surface *surface);
|
|
|
|
|
2008-12-15 20:35:24 -05:00
|
|
|
void
|
|
|
|
wl_client_send_acknowledge(struct wl_client *client,
|
|
|
|
struct wl_compositor *compositor,
|
|
|
|
uint32_t key, uint32_t frame);
|
2008-10-07 10:10:36 -04:00
|
|
|
|
2008-12-15 20:35:24 -05:00
|
|
|
void
|
|
|
|
wl_display_post_frame(struct wl_display *display,
|
|
|
|
struct wl_compositor *compositor,
|
|
|
|
uint32_t frame, uint32_t msecs);
|
2008-10-07 10:10:36 -04:00
|
|
|
|
2010-06-10 13:48:44 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2008-09-30 09:46:10 -04:00
|
|
|
#endif
|