|
|
@ -142,6 +142,8 @@ wl_display_post_key_event(struct wl_display *display, |
|
|
|
void |
|
|
|
void |
|
|
|
wl_display_post_frame(struct wl_display *display, |
|
|
|
wl_display_post_frame(struct wl_display *display, |
|
|
|
uint32_t frame, uint32_t msecs); |
|
|
|
uint32_t frame, uint32_t msecs); |
|
|
|
|
|
|
|
void |
|
|
|
|
|
|
|
wl_display_raise_surface(struct wl_display *display, struct wl_surface *surface); |
|
|
|
|
|
|
|
|
|
|
|
struct wl_compositor { |
|
|
|
struct wl_compositor { |
|
|
|
const struct wl_compositor_interface *interface; |
|
|
|
const struct wl_compositor_interface *interface; |
|
|
@ -174,6 +176,9 @@ struct wl_compositor_interface { |
|
|
|
void (*notify_pointer_motion)(struct wl_compositor *compositor, |
|
|
|
void (*notify_pointer_motion)(struct wl_compositor *compositor, |
|
|
|
struct wl_object *source, |
|
|
|
struct wl_object *source, |
|
|
|
int32_t x, int32_t y); |
|
|
|
int32_t x, int32_t y); |
|
|
|
|
|
|
|
void (*notify_pointer_button)(struct wl_compositor *compositor, |
|
|
|
|
|
|
|
struct wl_object *source, |
|
|
|
|
|
|
|
int32_t button, int32_t state); |
|
|
|
void (*notify_key)(struct wl_compositor *compositor, |
|
|
|
void (*notify_key)(struct wl_compositor *compositor, |
|
|
|
struct wl_object *source, |
|
|
|
struct wl_object *source, |
|
|
|
uint32_t key, uint32_t state); |
|
|
|
uint32_t key, uint32_t state); |
|
|
|