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
|
|
|
|
|
|
2012-02-23 19:50:37 +01:00
|
|
|
#include <sys/types.h>
|
2008-09-30 09:46:10 -04:00
|
|
|
#include <stdint.h>
|
2008-11-23 23:41:08 -05:00
|
|
|
#include "wayland-util.h"
|
2012-04-11 16:59:05 +01:00
|
|
|
#include "wayland-version.h"
|
2008-11-08 15:39:41 -05:00
|
|
|
|
2008-09-30 09:46:10 -04:00
|
|
|
enum {
|
|
|
|
|
WL_EVENT_READABLE = 0x01,
|
2011-12-28 22:47:37 -05:00
|
|
|
WL_EVENT_WRITABLE = 0x02
|
2008-09-30 09:46:10 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
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;
|
2012-05-16 18:44:40 +01:00
|
|
|
struct wl_seat;
|
|
|
|
|
struct wl_pointer;
|
|
|
|
|
struct wl_keyboard;
|
|
|
|
|
struct wl_touch;
|
2012-04-13 09:53:15 -04:00
|
|
|
struct wl_listener;
|
|
|
|
|
typedef void (*wl_notify_func_t)(struct wl_listener *listener, void *data);
|
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-08-19 16:57:48 -04:00
|
|
|
typedef void (*wl_global_bind_func_t)(struct wl_client *client, void *data,
|
2011-08-19 13:44:01 -04:00
|
|
|
uint32_t version, uint32_t id);
|
2008-12-21 23:37:12 -05:00
|
|
|
|
2011-08-19 16:57:48 -04:00
|
|
|
struct wl_global *wl_display_add_global(struct wl_display *display,
|
|
|
|
|
const struct wl_interface *interface,
|
|
|
|
|
void *data,
|
|
|
|
|
wl_global_bind_func_t bind);
|
2008-12-10 13:16:50 -05:00
|
|
|
|
2011-08-19 16:57:48 -04:00
|
|
|
void wl_display_remove_global(struct wl_display *display,
|
|
|
|
|
struct wl_global *global);
|
2011-06-14 10:35:46 +02:00
|
|
|
|
Switch protocol to using serial numbers for ordering events and requests
The wayland protocol, as X, uses timestamps to match up certain
requests with input events. The problem is that sometimes we need to
send out an event that doesn't have a corresponding timestamped input
event. For example, the pointer focus surface goes away and new
surface needs to receive a pointer enter event. These events are
normally timestamped with the evdev event timestamp, but in this case,
we don't have a evdev timestamp. So we have to go to gettimeofday (or
clock_gettime()) and then we don't know if it's coming from the same
time source etc.
However for all these cases we don't need a real time timestamp, we
just need a serial number that encodes the order of events inside the
server. So we introduce a serial number mechanism that we can use to
order events. We still need real-time timestamps for actual input
device events (motion, buttons, keys, touch), to be able to reason
about double-click speed and movement speed so events that correspond to user input carry both a serial number and a timestamp.
The serial number also give us a mechanism to key together events that
are "logically the same" such as a unicode event and a keycode event,
or a motion event and a relative event from a raw device.
2012-04-11 22:25:51 -04:00
|
|
|
uint32_t wl_display_get_serial(struct wl_display *display);
|
|
|
|
|
uint32_t wl_display_next_serial(struct wl_display *display);
|
|
|
|
|
|
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-06-29 11:43:11 -04:00
|
|
|
void wl_client_flush(struct wl_client *client);
|
2012-02-18 00:29:25 -05:00
|
|
|
void wl_client_get_credentials(struct wl_client *client,
|
|
|
|
|
pid_t *pid, uid_t *uid, gid_t *gid);
|
2010-08-05 17:44:31 -04:00
|
|
|
|
2012-04-13 09:53:15 -04:00
|
|
|
void wl_client_add_destroy_listener(struct wl_client *client,
|
|
|
|
|
struct wl_listener *listener);
|
|
|
|
|
struct wl_listener *wl_client_get_destroy_listener(struct wl_client *client,
|
|
|
|
|
wl_notify_func_t notify);
|
|
|
|
|
|
2011-08-19 16:57:48 -04:00
|
|
|
struct wl_resource *
|
|
|
|
|
wl_client_add_object(struct wl_client *client,
|
|
|
|
|
const struct wl_interface *interface,
|
|
|
|
|
const void *implementation, uint32_t id, void *data);
|
2011-11-15 08:58:34 -05:00
|
|
|
struct wl_resource *
|
|
|
|
|
wl_client_new_object(struct wl_client *client,
|
|
|
|
|
const struct wl_interface *interface,
|
|
|
|
|
const void *implementation, void *data);
|
2012-04-27 11:28:06 -04:00
|
|
|
struct wl_resource *
|
|
|
|
|
wl_client_get_object(struct wl_client *client, uint32_t id);
|
2011-08-19 16:57:48 -04:00
|
|
|
|
2012-04-12 15:29:48 -04:00
|
|
|
struct wl_listener {
|
|
|
|
|
struct wl_list link;
|
2012-04-13 09:53:15 -04:00
|
|
|
wl_notify_func_t notify;
|
2012-04-12 15:29:48 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_signal {
|
|
|
|
|
struct wl_list listener_list;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
wl_signal_init(struct wl_signal *signal)
|
|
|
|
|
{
|
|
|
|
|
wl_list_init(&signal->listener_list);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
wl_signal_add(struct wl_signal *signal, struct wl_listener *listener)
|
|
|
|
|
{
|
|
|
|
|
wl_list_insert(signal->listener_list.prev, &listener->link);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline struct wl_listener *
|
|
|
|
|
wl_signal_get(struct wl_signal *signal, void *notify)
|
|
|
|
|
{
|
|
|
|
|
struct wl_listener *l;
|
|
|
|
|
|
|
|
|
|
wl_list_for_each(l, &signal->listener_list, link)
|
|
|
|
|
if (l->notify == notify)
|
|
|
|
|
return l;
|
|
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
|
wl_signal_emit(struct wl_signal *signal, void *data)
|
|
|
|
|
{
|
|
|
|
|
struct wl_listener *l, *next;
|
|
|
|
|
|
|
|
|
|
wl_list_for_each_safe(l, next, &signal->listener_list, link)
|
|
|
|
|
l->notify(l, data);
|
|
|
|
|
}
|
|
|
|
|
|
2011-08-18 17:53:50 -04:00
|
|
|
struct wl_resource {
|
|
|
|
|
struct wl_object object;
|
|
|
|
|
void (*destroy)(struct wl_resource *resource);
|
|
|
|
|
struct wl_list link;
|
2012-04-12 15:29:48 -04:00
|
|
|
struct wl_signal destroy_signal;
|
2011-08-18 17:53:50 -04:00
|
|
|
struct wl_client *client;
|
|
|
|
|
void *data;
|
|
|
|
|
};
|
|
|
|
|
|
2012-03-02 15:16:33 +02:00
|
|
|
struct wl_buffer {
|
|
|
|
|
struct wl_resource resource;
|
|
|
|
|
int32_t width, height;
|
|
|
|
|
uint32_t busy_count;
|
2011-03-08 11:32:24 +01: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
|
|
|
};
|
|
|
|
|
|
2012-02-18 05:05:27 -07:00
|
|
|
struct wl_pointer_grab;
|
|
|
|
|
struct wl_pointer_grab_interface {
|
Switch protocol to using serial numbers for ordering events and requests
The wayland protocol, as X, uses timestamps to match up certain
requests with input events. The problem is that sometimes we need to
send out an event that doesn't have a corresponding timestamped input
event. For example, the pointer focus surface goes away and new
surface needs to receive a pointer enter event. These events are
normally timestamped with the evdev event timestamp, but in this case,
we don't have a evdev timestamp. So we have to go to gettimeofday (or
clock_gettime()) and then we don't know if it's coming from the same
time source etc.
However for all these cases we don't need a real time timestamp, we
just need a serial number that encodes the order of events inside the
server. So we introduce a serial number mechanism that we can use to
order events. We still need real-time timestamps for actual input
device events (motion, buttons, keys, touch), to be able to reason
about double-click speed and movement speed so events that correspond to user input carry both a serial number and a timestamp.
The serial number also give us a mechanism to key together events that
are "logically the same" such as a unicode event and a keycode event,
or a motion event and a relative event from a raw device.
2012-04-11 22:25:51 -04:00
|
|
|
void (*focus)(struct wl_pointer_grab *grab,
|
2012-05-08 17:17:26 +01:00
|
|
|
struct wl_surface *surface,
|
|
|
|
|
wl_fixed_t x,
|
|
|
|
|
wl_fixed_t y);
|
2012-02-18 05:05:27 -07:00
|
|
|
void (*motion)(struct wl_pointer_grab *grab,
|
2012-05-08 17:17:26 +01:00
|
|
|
uint32_t time,
|
|
|
|
|
wl_fixed_t x,
|
|
|
|
|
wl_fixed_t y);
|
2012-02-18 05:05:27 -07:00
|
|
|
void (*button)(struct wl_pointer_grab *grab,
|
2012-05-04 11:21:20 +01:00
|
|
|
uint32_t time, uint32_t button, uint32_t state);
|
2010-12-07 14:58:57 -05:00
|
|
|
};
|
|
|
|
|
|
2012-02-18 05:05:27 -07:00
|
|
|
struct wl_pointer_grab {
|
|
|
|
|
const struct wl_pointer_grab_interface *interface;
|
2012-05-16 18:44:40 +01:00
|
|
|
struct wl_pointer *pointer;
|
2012-01-04 21:27:26 -05:00
|
|
|
struct wl_surface *focus;
|
2012-05-08 17:17:26 +01:00
|
|
|
wl_fixed_t x, y;
|
2010-12-07 14:58:57 -05:00
|
|
|
};
|
|
|
|
|
|
2012-02-18 05:05:28 -07:00
|
|
|
struct wl_keyboard_grab;
|
|
|
|
|
struct wl_keyboard_grab_interface {
|
Switch protocol to using serial numbers for ordering events and requests
The wayland protocol, as X, uses timestamps to match up certain
requests with input events. The problem is that sometimes we need to
send out an event that doesn't have a corresponding timestamped input
event. For example, the pointer focus surface goes away and new
surface needs to receive a pointer enter event. These events are
normally timestamped with the evdev event timestamp, but in this case,
we don't have a evdev timestamp. So we have to go to gettimeofday (or
clock_gettime()) and then we don't know if it's coming from the same
time source etc.
However for all these cases we don't need a real time timestamp, we
just need a serial number that encodes the order of events inside the
server. So we introduce a serial number mechanism that we can use to
order events. We still need real-time timestamps for actual input
device events (motion, buttons, keys, touch), to be able to reason
about double-click speed and movement speed so events that correspond to user input carry both a serial number and a timestamp.
The serial number also give us a mechanism to key together events that
are "logically the same" such as a unicode event and a keycode event,
or a motion event and a relative event from a raw device.
2012-04-11 22:25:51 -04:00
|
|
|
void (*key)(struct wl_keyboard_grab *grab, uint32_t time,
|
2012-05-04 11:21:20 +01:00
|
|
|
uint32_t key, uint32_t state);
|
2012-02-18 05:05:28 -07:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_keyboard_grab {
|
|
|
|
|
const struct wl_keyboard_grab_interface *interface;
|
2012-05-16 18:44:40 +01:00
|
|
|
struct wl_keyboard *keyboard;
|
2012-02-18 05:05:28 -07:00
|
|
|
struct wl_surface *focus;
|
|
|
|
|
uint32_t key;
|
|
|
|
|
};
|
|
|
|
|
|
2012-01-04 21:40:21 -05:00
|
|
|
struct wl_data_offer {
|
|
|
|
|
struct wl_resource resource;
|
|
|
|
|
struct wl_data_source *source;
|
|
|
|
|
struct wl_listener source_destroy_listener;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_data_source {
|
|
|
|
|
struct wl_resource resource;
|
|
|
|
|
struct wl_array mime_types;
|
|
|
|
|
|
|
|
|
|
const struct wl_data_offer_interface *offer_interface;
|
|
|
|
|
void (*cancel)(struct wl_data_source *source);
|
|
|
|
|
};
|
|
|
|
|
|
2012-05-16 18:44:40 +01:00
|
|
|
struct wl_pointer {
|
|
|
|
|
struct wl_seat *seat;
|
|
|
|
|
|
2011-08-18 17:53:50 -04:00
|
|
|
struct wl_list resource_list;
|
2012-05-16 18:44:40 +01:00
|
|
|
struct wl_surface *focus;
|
|
|
|
|
struct wl_resource *focus_resource;
|
|
|
|
|
struct wl_listener focus_listener;
|
|
|
|
|
uint32_t focus_serial;
|
|
|
|
|
|
|
|
|
|
struct wl_pointer_grab *grab;
|
|
|
|
|
struct wl_pointer_grab default_grab;
|
|
|
|
|
wl_fixed_t grab_x, grab_y;
|
|
|
|
|
uint32_t grab_button;
|
|
|
|
|
uint32_t grab_serial;
|
|
|
|
|
uint32_t grab_time;
|
2010-12-08 09:48:52 -05:00
|
|
|
|
2012-05-08 17:17:26 +01:00
|
|
|
wl_fixed_t x, y;
|
2012-01-04 21:27:26 -05:00
|
|
|
struct wl_surface *current;
|
2012-05-08 17:17:26 +01:00
|
|
|
wl_fixed_t current_x, current_y;
|
2012-01-04 21:27:26 -05:00
|
|
|
|
|
|
|
|
uint32_t button_count;
|
2012-05-16 18:44:40 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_keyboard {
|
|
|
|
|
struct wl_seat *seat;
|
|
|
|
|
|
|
|
|
|
struct wl_list resource_list;
|
|
|
|
|
struct wl_surface *focus;
|
|
|
|
|
struct wl_resource *focus_resource;
|
|
|
|
|
struct wl_listener focus_listener;
|
|
|
|
|
uint32_t focus_serial;
|
|
|
|
|
|
|
|
|
|
struct wl_keyboard_grab *grab;
|
|
|
|
|
struct wl_keyboard_grab default_grab;
|
2012-02-18 05:05:28 -07:00
|
|
|
uint32_t grab_key;
|
2012-05-16 18:44:40 +01:00
|
|
|
uint32_t grab_serial;
|
|
|
|
|
uint32_t grab_time;
|
|
|
|
|
|
|
|
|
|
struct wl_array keys;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_touch {
|
|
|
|
|
struct wl_seat *seat;
|
|
|
|
|
|
|
|
|
|
struct wl_list resource_list;
|
|
|
|
|
struct wl_surface *focus;
|
|
|
|
|
struct wl_resource *focus_resource;
|
|
|
|
|
struct wl_listener focus_listener;
|
|
|
|
|
uint32_t focus_serial;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
struct wl_seat {
|
|
|
|
|
struct wl_list base_resource_list;
|
|
|
|
|
|
|
|
|
|
struct wl_pointer *pointer;
|
|
|
|
|
struct wl_keyboard *keyboard;
|
|
|
|
|
struct wl_touch *touch;
|
|
|
|
|
|
|
|
|
|
uint32_t selection_serial;
|
|
|
|
|
struct wl_data_source *selection_data_source;
|
|
|
|
|
struct wl_listener selection_data_source_listener;
|
|
|
|
|
struct wl_signal selection_signal;
|
2012-01-04 21:40:21 -05:00
|
|
|
|
|
|
|
|
struct wl_list drag_resource_list;
|
2012-05-29 10:58:26 +03:00
|
|
|
struct wl_client *drag_client;
|
2012-01-04 21:40:21 -05:00
|
|
|
struct wl_data_source *drag_data_source;
|
2012-03-02 15:45:56 +02:00
|
|
|
struct wl_listener drag_data_source_listener;
|
2012-01-04 21:40:21 -05:00
|
|
|
struct wl_surface *drag_focus;
|
|
|
|
|
struct wl_resource *drag_focus_resource;
|
|
|
|
|
struct wl_listener drag_focus_listener;
|
2012-02-18 05:05:27 -07:00
|
|
|
struct wl_pointer_grab drag_grab;
|
2012-02-15 17:02:52 +02:00
|
|
|
struct wl_surface *drag_surface;
|
2012-03-01 14:09:42 +02:00
|
|
|
struct wl_listener drag_icon_listener;
|
2012-04-12 15:29:48 -04:00
|
|
|
struct wl_signal drag_icon_signal;
|
2010-12-08 09:48:52 -05:00
|
|
|
};
|
2010-12-07 14:58:57 -05:00
|
|
|
|
2011-11-28 12:23:32 +02:00
|
|
|
/*
|
|
|
|
|
* Post an event to the client's object referred to by 'resource'.
|
|
|
|
|
* 'opcode' is the event number generated from the protocol XML
|
|
|
|
|
* description (the event name). The variable arguments are the event
|
|
|
|
|
* parameters, in the order they appear in the protocol XML specification.
|
|
|
|
|
*
|
|
|
|
|
* The variable arguments' types are:
|
|
|
|
|
* - type=uint: uint32_t
|
|
|
|
|
* - type=int: int32_t
|
2012-05-08 17:17:25 +01:00
|
|
|
* - type=fixed: wl_fixed_t
|
2011-11-28 12:23:32 +02:00
|
|
|
* - type=string: (const char *) to a nil-terminated string
|
|
|
|
|
* - type=array: (struct wl_array *)
|
|
|
|
|
* - type=fd: int, that is an open file descriptor
|
|
|
|
|
* - type=new_id: (struct wl_object *) or (struct wl_resource *)
|
|
|
|
|
* - type=object: (struct wl_object *) or (struct wl_resource *)
|
|
|
|
|
*/
|
2011-08-29 15:01:41 -04:00
|
|
|
void wl_resource_post_event(struct wl_resource *resource,
|
|
|
|
|
uint32_t opcode, ...);
|
2011-11-17 16:46:36 -05:00
|
|
|
void wl_resource_queue_event(struct wl_resource *resource,
|
|
|
|
|
uint32_t opcode, ...);
|
2011-11-28 12:23:32 +02:00
|
|
|
|
|
|
|
|
/* msg is a printf format string, variable args are its args. */
|
2011-08-29 15:01:41 -04:00
|
|
|
void wl_resource_post_error(struct wl_resource *resource,
|
2012-03-18 18:54:21 -07:00
|
|
|
uint32_t code, const char *msg, ...)
|
|
|
|
|
__attribute__ ((format (printf, 3, 4)));
|
2011-09-01 09:53:33 -04:00
|
|
|
void wl_resource_post_no_memory(struct wl_resource *resource);
|
2008-12-21 23:37:12 -05:00
|
|
|
|
2012-03-02 15:16:33 +02:00
|
|
|
#include "wayland-server-protocol.h"
|
|
|
|
|
|
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
|
Switch protocol to using serial numbers for ordering events and requests
The wayland protocol, as X, uses timestamps to match up certain
requests with input events. The problem is that sometimes we need to
send out an event that doesn't have a corresponding timestamped input
event. For example, the pointer focus surface goes away and new
surface needs to receive a pointer enter event. These events are
normally timestamped with the evdev event timestamp, but in this case,
we don't have a evdev timestamp. So we have to go to gettimeofday (or
clock_gettime()) and then we don't know if it's coming from the same
time source etc.
However for all these cases we don't need a real time timestamp, we
just need a serial number that encodes the order of events inside the
server. So we introduce a serial number mechanism that we can use to
order events. We still need real-time timestamps for actual input
device events (motion, buttons, keys, touch), to be able to reason
about double-click speed and movement speed so events that correspond to user input carry both a serial number and a timestamp.
The serial number also give us a mechanism to key together events that
are "logically the same" such as a unicode event and a keycode event,
or a motion event and a relative event from a raw device.
2012-04-11 22:25:51 -04:00
|
|
|
wl_resource_destroy(struct wl_resource *resource);
|
2010-08-09 14:43:33 -04:00
|
|
|
|
2010-12-06 21:35:19 -05:00
|
|
|
void
|
2012-05-16 18:44:40 +01:00
|
|
|
wl_seat_init(struct wl_seat *seat);
|
2010-12-06 21:35:19 -05:00
|
|
|
|
2012-01-03 16:32:40 +02:00
|
|
|
void
|
2012-05-16 18:44:40 +01:00
|
|
|
wl_seat_release(struct wl_seat *seat);
|
2012-01-03 16:32:40 +02:00
|
|
|
|
2010-12-01 10:17:47 -05:00
|
|
|
void
|
2012-05-16 18:44:40 +01:00
|
|
|
wl_seat_set_pointer(struct wl_seat *seat, struct wl_pointer *pointer);
|
|
|
|
|
void
|
|
|
|
|
wl_seat_set_keyboard(struct wl_seat *seat, struct wl_keyboard *keyboard);
|
|
|
|
|
void
|
|
|
|
|
wl_seat_set_touch(struct wl_seat *seat, struct wl_touch *touch);
|
2010-12-01 10:17:47 -05:00
|
|
|
|
|
|
|
|
void
|
2012-05-16 18:44:40 +01:00
|
|
|
wl_pointer_init(struct wl_pointer *pointer);
|
2012-01-04 21:40:21 -05:00
|
|
|
void
|
2012-05-16 18:44:40 +01:00
|
|
|
wl_pointer_release(struct wl_pointer *pointer);
|
|
|
|
|
void
|
|
|
|
|
wl_pointer_set_focus(struct wl_pointer *pointer, struct wl_surface *surface,
|
|
|
|
|
wl_fixed_t sx, wl_fixed_t sy);
|
|
|
|
|
void
|
|
|
|
|
wl_pointer_start_grab(struct wl_pointer *pointer,
|
|
|
|
|
struct wl_pointer_grab *grab);
|
|
|
|
|
void
|
|
|
|
|
wl_pointer_end_grab(struct wl_pointer *pointer);
|
2010-12-01 10:17:47 -05:00
|
|
|
|
2012-02-18 05:05:28 -07:00
|
|
|
void
|
2012-05-16 18:44:40 +01:00
|
|
|
wl_keyboard_init(struct wl_keyboard *keyboard);
|
|
|
|
|
void
|
|
|
|
|
wl_keyboard_release(struct wl_keyboard *keyboard);
|
|
|
|
|
void
|
|
|
|
|
wl_keyboard_set_focus(struct wl_keyboard *keyboard, struct wl_surface *surface);
|
2012-02-18 05:05:28 -07:00
|
|
|
void
|
2012-05-16 18:44:40 +01:00
|
|
|
wl_keyboard_start_grab(struct wl_keyboard *device,
|
|
|
|
|
struct wl_keyboard_grab *grab);
|
|
|
|
|
void
|
|
|
|
|
wl_keyboard_end_grab(struct wl_keyboard *keyboard);
|
2012-02-18 05:05:28 -07:00
|
|
|
|
2011-01-05 17:34:54 -05:00
|
|
|
void
|
2012-05-16 18:44:40 +01:00
|
|
|
wl_touch_init(struct wl_touch *touch);
|
|
|
|
|
void
|
|
|
|
|
wl_touch_release(struct wl_touch *touch);
|
|
|
|
|
|
2011-01-05 17:34:54 -05:00
|
|
|
void
|
2012-05-16 18:44:40 +01:00
|
|
|
wl_data_device_set_keyboard_focus(struct wl_seat *seat);
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
wl_data_device_manager_init(struct wl_display *display);
|
|
|
|
|
|
2011-01-05 17:34:54 -05:00
|
|
|
|
2012-01-04 21:40:21 -05:00
|
|
|
void
|
2012-05-16 18:44:40 +01:00
|
|
|
wl_seat_set_selection(struct wl_seat *seat,
|
|
|
|
|
struct wl_data_source *source, uint32_t serial);
|
2012-01-04 21:40:21 -05:00
|
|
|
|
|
|
|
|
|
2011-03-08 11:32:24 +01:00
|
|
|
void *
|
|
|
|
|
wl_shm_buffer_get_data(struct wl_buffer *buffer);
|
|
|
|
|
|
|
|
|
|
int32_t
|
|
|
|
|
wl_shm_buffer_get_stride(struct wl_buffer *buffer);
|
|
|
|
|
|
2011-08-30 21:26:19 -04:00
|
|
|
uint32_t
|
|
|
|
|
wl_shm_buffer_get_format(struct wl_buffer *buffer);
|
|
|
|
|
|
2011-03-08 11:32:24 +01:00
|
|
|
int
|
|
|
|
|
wl_buffer_is_shm(struct wl_buffer *buffer);
|
|
|
|
|
|
2012-03-26 16:33:24 -04:00
|
|
|
int
|
|
|
|
|
wl_display_init_shm(struct wl_display *display);
|
2011-03-08 11:32:24 +01:00
|
|
|
|
2010-06-10 13:48:44 -04:00
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
2008-09-30 09:46:10 -04:00
|
|
|
#endif
|