blob: 293a1b527673054545e5395a21221f935f334878 [file] [log] [blame]
Kristian Høgsbergffd710e2008-12-02 15:15:01 -05001/*
2 * Copyright © 2008 Kristian Høgsberg
3 *
4 * Permission to use, copy, modify, distribute, and sell this software and its
5 * documentation for any purpose is hereby granted without fee, provided that
6 * the above copyright notice appear in all copies and that both that copyright
7 * notice and this permission notice appear in supporting documentation, and
8 * that the name of the copyright holders not be used in advertising or
9 * publicity pertaining to distribution of the software without specific,
10 * written prior permission. The copyright holders make no representations
11 * about the suitability of this software for any purpose. It is provided "as
12 * is" without express or implied warranty.
13 *
14 * THE COPYRIGHT HOLDERS DISCLAIM ALL WARRANTIES WITH REGARD TO THIS SOFTWARE,
15 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
16 * EVENT SHALL THE COPYRIGHT HOLDERS BE LIABLE FOR ANY SPECIAL, INDIRECT OR
17 * CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
18 * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
19 * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
20 * OF THIS SOFTWARE.
21 */
22
Kristian Høgsberg97f1ebe2008-09-30 09:46:10 -040023#ifndef WAYLAND_H
24#define WAYLAND_H
25
26#include <stdint.h>
Kristian Høgsberg1e4b86a2008-11-23 23:41:08 -050027#include "wayland-util.h"
Kristian Høgsbergb7a01922008-11-08 15:39:41 -050028
Kristian Høgsberg97f1ebe2008-09-30 09:46:10 -040029enum {
30 WL_EVENT_READABLE = 0x01,
31 WL_EVENT_WRITEABLE = 0x02
32};
33
34struct wl_event_loop;
35struct wl_event_source;
Kristian Høgsberg5ebb3172008-10-11 19:21:35 -040036typedef void (*wl_event_loop_fd_func_t)(int fd, uint32_t mask, void *data);
Kristian Høgsberg4a298902008-11-28 18:35:25 -050037typedef void (*wl_event_loop_timer_func_t)(void *data);
Ray Strodefe573472008-12-19 00:22:18 -050038typedef void (*wl_event_loop_signal_func_t)(int signal_number, void *data);
Kristian Høgsberg5ebb3172008-10-11 19:21:35 -040039typedef void (*wl_event_loop_idle_func_t)(void *data);
Kristian Høgsberg97f1ebe2008-09-30 09:46:10 -040040
41struct wl_event_loop *wl_event_loop_create(void);
42void wl_event_loop_destroy(struct wl_event_loop *loop);
43struct wl_event_source *wl_event_loop_add_fd(struct wl_event_loop *loop,
44 int fd, uint32_t mask,
Kristian Høgsberg5ebb3172008-10-11 19:21:35 -040045 wl_event_loop_fd_func_t func,
Kristian Høgsberg97f1ebe2008-09-30 09:46:10 -040046 void *data);
Kristian Høgsberg4a298902008-11-28 18:35:25 -050047int wl_event_source_fd_update(struct wl_event_source *source, uint32_t mask);
48struct wl_event_source *wl_event_loop_add_timer(struct wl_event_loop *loop,
49 wl_event_loop_timer_func_t func,
50 void *data);
Ray Strodefe573472008-12-19 00:22:18 -050051struct wl_event_source *
52wl_event_loop_add_signal(struct wl_event_loop *loop,
53 int signal_number,
54 wl_event_loop_signal_func_t func,
55 void *data);
56
Kristian Høgsberg4a298902008-11-28 18:35:25 -050057int wl_event_source_timer_update(struct wl_event_source *source,
58 int ms_delay);
59int wl_event_source_remove(struct wl_event_source *source);
Kristian Høgsberga67a71a2008-10-07 10:10:36 -040060
Kristian Høgsberg4a298902008-11-28 18:35:25 -050061
Kristian Høgsberg97f1ebe2008-09-30 09:46:10 -040062int wl_event_loop_wait(struct wl_event_loop *loop);
Kristian Høgsberg5ebb3172008-10-11 19:21:35 -040063struct wl_event_source *wl_event_loop_add_idle(struct wl_event_loop *loop,
64 wl_event_loop_idle_func_t func,
65 void *data);
Kristian Høgsberg97f1ebe2008-09-30 09:46:10 -040066
Kristian Høgsberg97f1ebe2008-09-30 09:46:10 -040067struct wl_client;
68
Kristian Høgsberga67a71a2008-10-07 10:10:36 -040069struct wl_display;
Kristian Høgsberg5ee1a602008-12-11 23:18:45 -050070struct wl_input_device;
Kristian Høgsberga67a71a2008-10-07 10:10:36 -040071
Kristian Høgsberg05eff512008-10-07 10:10:36 -040072struct wl_map {
73 int32_t x, y, width, height;
74};
75
Kristian Høgsberg122912c2008-12-05 11:13:50 -050076struct wl_display *wl_display_create(void);
77struct wl_event_loop *wl_display_get_event_loop(struct wl_display *display);
Kristian Høgsbergdc0f3552008-12-07 15:22:22 -050078int wl_display_add_socket(struct wl_display *display, const char *name, size_t name_size);
Kristian Høgsberg122912c2008-12-05 11:13:50 -050079void wl_display_run(struct wl_display *display);
80
Kristian Høgsbergfe831a72008-12-21 21:50:23 -050081void wl_display_add_object(struct wl_display *display, struct wl_object *object);
Kristian Høgsbergee02ca62008-12-21 23:37:12 -050082
83typedef void (*wl_client_connect_func_t)(struct wl_client *client, struct wl_object *global);
84
85int wl_display_add_global(struct wl_display *display, struct wl_object *object, wl_client_connect_func_t func);
Kristian Høgsberg5a75c902008-12-10 13:16:50 -050086
Kristian Høgsbergd2412e22008-12-15 20:35:24 -050087struct wl_compositor {
88 struct wl_object base;
89};
90
91struct wl_surface {
92 struct wl_object base;
93 struct wl_client *client;
Kristian Høgsbergb559fcb2009-09-18 17:00:37 -040094 struct wl_list link;
Kristian Høgsbergd2412e22008-12-15 20:35:24 -050095};
96
97struct wl_compositor_interface {
98 void (*create_surface)(struct wl_client *client,
99 struct wl_compositor *compositor, uint32_t id);
100 void (*commit)(struct wl_client *client,
101 struct wl_compositor *compositor, uint32_t key);
102};
103
104struct wl_surface_interface {
105 void (*destroy)(struct wl_client *client,
106 struct wl_surface *surface);
107 void (*attach)(struct wl_client *client,
108 struct wl_surface *surface, uint32_t name,
Kristian Høgsbergde31d5c2008-12-18 17:55:33 -0500109 uint32_t width, uint32_t height, uint32_t stride,
110 struct wl_object *visual);
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500111 void (*map)(struct wl_client *client,
112 struct wl_surface *surface,
113 int32_t x, int32_t y, int32_t width, int32_t height);
114 void (*copy)(struct wl_client *client, struct wl_surface *surface,
115 int32_t dst_x, int32_t dst_y, uint32_t name, uint32_t stride,
116 int32_t x, int32_t y, int32_t width, int32_t height);
117 void (*damage)(struct wl_client *client, struct wl_surface *surface,
118 int32_t x, int32_t y, int32_t width, int32_t height);
119};
120
Kristian Høgsberg715a0812008-12-10 10:42:04 -0500121void
Kristian Høgsbergee02ca62008-12-21 23:37:12 -0500122wl_client_post_event(struct wl_client *client,
123 struct wl_object *sender,
124 uint32_t event, ...);
125
126void
Kristian Høgsberg5a75c902008-12-10 13:16:50 -0500127wl_surface_post_event(struct wl_surface *surface,
128 struct wl_object *sender,
129 uint32_t event, ...);
Kristian Høgsbergf9bc7952008-11-02 10:12:29 -0500130
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500131int
132wl_display_set_compositor(struct wl_display *display,
133 struct wl_compositor *compositor,
134 const struct wl_compositor_interface *implementation);
Kristian Høgsberga67a71a2008-10-07 10:10:36 -0400135
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500136int
137wl_client_add_surface(struct wl_client *client,
138 struct wl_surface *surface,
139 const struct wl_surface_interface *implementation,
140 uint32_t id);
Kristian Høgsberga67a71a2008-10-07 10:10:36 -0400141
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500142void
Kristian Høgsbergb559fcb2009-09-18 17:00:37 -0400143wl_client_remove_surface(struct wl_client *client,
144 struct wl_surface *surface);
145
146void
Kristian Høgsbergd2412e22008-12-15 20:35:24 -0500147wl_client_send_acknowledge(struct wl_client *client,
148 struct wl_compositor *compositor,
149 uint32_t key, uint32_t frame);
150
151void
152wl_display_post_frame(struct wl_display *display,
153 struct wl_compositor *compositor,
154 uint32_t frame, uint32_t msecs);
Kristian Høgsberga67a71a2008-10-07 10:10:36 -0400155
Kristian Høgsberg97f1ebe2008-09-30 09:46:10 -0400156#endif