2018-04-03 18:12:57 +02:00
|
|
|
#ifndef XWAYLAND_SELECTION_H
|
|
|
|
#define XWAYLAND_SELECTION_H
|
|
|
|
|
2023-06-05 22:45:28 +02:00
|
|
|
#include <stdbool.h>
|
2018-04-03 18:12:57 +02:00
|
|
|
#include <xcb/xfixes.h>
|
2023-06-05 22:45:28 +02:00
|
|
|
#include <wayland-util.h>
|
2018-04-03 18:12:57 +02:00
|
|
|
|
|
|
|
#define INCR_CHUNK_SIZE (64 * 1024)
|
|
|
|
|
|
|
|
#define XDND_VERSION 5
|
|
|
|
|
2018-11-28 16:37:35 +01:00
|
|
|
struct wlr_primary_selection_source;
|
|
|
|
|
2018-04-03 18:12:57 +02:00
|
|
|
struct wlr_xwm_selection;
|
|
|
|
|
2023-06-05 22:45:28 +02:00
|
|
|
struct wlr_drag;
|
|
|
|
struct wlr_data_source;
|
|
|
|
|
2018-04-03 18:12:57 +02:00
|
|
|
struct wlr_xwm_selection_transfer {
|
|
|
|
struct wlr_xwm_selection *selection;
|
|
|
|
|
|
|
|
bool incr;
|
|
|
|
bool flush_property_on_delete;
|
|
|
|
bool property_set;
|
|
|
|
struct wl_array source_data;
|
2021-01-25 03:09:53 +01:00
|
|
|
int wl_client_fd;
|
|
|
|
struct wl_event_source *event_source;
|
2021-01-31 05:43:25 +01:00
|
|
|
struct wl_list link;
|
2018-04-03 18:12:57 +02:00
|
|
|
|
|
|
|
// when sending to x11
|
|
|
|
xcb_selection_request_event_t request;
|
|
|
|
|
|
|
|
// when receiving from x11
|
|
|
|
int property_start;
|
|
|
|
xcb_get_property_reply_t *property_reply;
|
2021-01-31 05:43:25 +01:00
|
|
|
xcb_window_t incoming_window;
|
2018-04-03 18:12:57 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct wlr_xwm_selection {
|
|
|
|
struct wlr_xwm *xwm;
|
2021-01-31 05:43:25 +01:00
|
|
|
|
2018-04-03 18:12:57 +02:00
|
|
|
xcb_atom_t atom;
|
|
|
|
xcb_window_t window;
|
|
|
|
xcb_window_t owner;
|
|
|
|
xcb_timestamp_t timestamp;
|
|
|
|
|
2021-01-31 05:43:25 +01:00
|
|
|
struct wl_list incoming;
|
2018-04-03 18:12:57 +02:00
|
|
|
struct wl_list outgoing;
|
|
|
|
};
|
|
|
|
|
2021-01-31 05:43:25 +01:00
|
|
|
struct wlr_xwm_selection_transfer *
|
|
|
|
xwm_selection_find_incoming_transfer_by_window(
|
|
|
|
struct wlr_xwm_selection *selection, xcb_window_t window);
|
|
|
|
|
2021-01-25 03:09:53 +01:00
|
|
|
void xwm_selection_transfer_remove_event_source(
|
2018-04-03 18:12:57 +02:00
|
|
|
struct wlr_xwm_selection_transfer *transfer);
|
2021-01-25 03:09:53 +01:00
|
|
|
void xwm_selection_transfer_close_wl_client_fd(
|
2018-04-03 18:12:57 +02:00
|
|
|
struct wlr_xwm_selection_transfer *transfer);
|
|
|
|
void xwm_selection_transfer_destroy_property_reply(
|
|
|
|
struct wlr_xwm_selection_transfer *transfer);
|
2021-01-31 05:43:25 +01:00
|
|
|
void xwm_selection_transfer_init(struct wlr_xwm_selection_transfer *transfer,
|
|
|
|
struct wlr_xwm_selection *selection);
|
|
|
|
void xwm_selection_transfer_destroy(
|
|
|
|
struct wlr_xwm_selection_transfer *transfer);
|
2018-04-03 18:12:57 +02:00
|
|
|
|
2021-01-30 01:00:17 +01:00
|
|
|
void xwm_selection_transfer_destroy_outgoing(
|
|
|
|
struct wlr_xwm_selection_transfer *transfer);
|
|
|
|
|
2018-04-03 18:12:57 +02:00
|
|
|
xcb_atom_t xwm_mime_type_to_atom(struct wlr_xwm *xwm, char *mime_type);
|
|
|
|
char *xwm_mime_type_from_atom(struct wlr_xwm *xwm, xcb_atom_t atom);
|
|
|
|
struct wlr_xwm_selection *xwm_get_selection(struct wlr_xwm *xwm,
|
|
|
|
xcb_atom_t selection_atom);
|
|
|
|
|
|
|
|
void xwm_send_incr_chunk(struct wlr_xwm_selection_transfer *transfer);
|
|
|
|
void xwm_handle_selection_request(struct wlr_xwm *xwm,
|
|
|
|
xcb_selection_request_event_t *req);
|
2020-07-03 04:25:25 +02:00
|
|
|
void xwm_handle_selection_destroy_notify(struct wlr_xwm *xwm,
|
|
|
|
xcb_destroy_notify_event_t *event);
|
2018-04-03 18:12:57 +02:00
|
|
|
|
|
|
|
void xwm_get_incr_chunk(struct wlr_xwm_selection_transfer *transfer);
|
|
|
|
void xwm_handle_selection_notify(struct wlr_xwm *xwm,
|
|
|
|
xcb_selection_notify_event_t *event);
|
|
|
|
int xwm_handle_xfixes_selection_notify(struct wlr_xwm *xwm,
|
|
|
|
xcb_xfixes_selection_notify_event_t *event);
|
2018-04-26 00:24:58 +02:00
|
|
|
bool data_source_is_xwayland(struct wlr_data_source *wlr_source);
|
|
|
|
bool primary_selection_source_is_xwayland(
|
2018-11-28 16:37:35 +01:00
|
|
|
struct wlr_primary_selection_source *wlr_source);
|
2018-04-03 18:12:57 +02:00
|
|
|
|
|
|
|
void xwm_seat_handle_start_drag(struct wlr_xwm *xwm, struct wlr_drag *drag);
|
|
|
|
|
2021-01-31 18:27:54 +01:00
|
|
|
void xwm_selection_init(struct wlr_xwm_selection *selection,
|
|
|
|
struct wlr_xwm *xwm, xcb_atom_t atom);
|
2021-01-30 05:47:03 +01:00
|
|
|
void xwm_selection_finish(struct wlr_xwm_selection *selection);
|
2018-04-03 18:12:57 +02:00
|
|
|
|
|
|
|
#endif
|