2017-11-20 12:23:17 +00:00
|
|
|
#include <xcb/xfixes.h>
|
|
|
|
#include "wlr/util/log.h"
|
|
|
|
#include "xwm.h"
|
|
|
|
|
|
|
|
static int xwm_handle_selection_property_notify(struct wlr_xwm *xwm,
|
|
|
|
xcb_generic_event_t *event) {
|
2017-11-20 13:51:40 +00:00
|
|
|
xcb_property_notify_event_t *property_notify =
|
|
|
|
(xcb_property_notify_event_t *) event;
|
|
|
|
|
|
|
|
if (property_notify->window == xwm->selection_window) {
|
|
|
|
if (property_notify->state == XCB_PROPERTY_NEW_VALUE &&
|
|
|
|
property_notify->atom == xwm->atoms[WL_SELECTION] &&
|
|
|
|
xwm->incr)
|
|
|
|
wlr_log(L_DEBUG, "TODO: get selection");
|
|
|
|
return 1;
|
|
|
|
} else if (property_notify->window == xwm->selection_request.requestor) {
|
|
|
|
if (property_notify->state == XCB_PROPERTY_DELETE &&
|
|
|
|
property_notify->atom == xwm->selection_request.property &&
|
|
|
|
xwm->incr)
|
|
|
|
wlr_log(L_DEBUG, "TODO: send selection");
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
2017-11-20 12:23:17 +00:00
|
|
|
}
|
|
|
|
|
2017-11-20 13:51:40 +00:00
|
|
|
static void xwm_handle_selection_request(struct wlr_xwm *xwm,
|
|
|
|
xcb_generic_event_t *event) {
|
2017-11-20 12:23:17 +00:00
|
|
|
wlr_log(L_DEBUG, "TODO: SELECTION REQUEST");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-11-21 15:18:44 +00:00
|
|
|
static void xwm_get_selection_targets(struct wlr_xwm *xwm) {
|
|
|
|
wlr_log(L_DEBUG, "TODO: GET SELECTION TARGETS");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xwm_get_selection_data(struct wlr_xwm *xwm) {
|
|
|
|
wlr_log(L_DEBUG, "TODO: GET SELECTION DATA");
|
|
|
|
}
|
|
|
|
|
|
|
|
static void xwm_handle_selection_notify(struct wlr_xwm *xwm,
|
2017-11-20 12:23:17 +00:00
|
|
|
xcb_generic_event_t *event) {
|
2017-11-21 15:18:44 +00:00
|
|
|
xcb_selection_notify_event_t *selection_notify =
|
|
|
|
(xcb_selection_notify_event_t *) event;
|
|
|
|
|
|
|
|
if (selection_notify->property == XCB_ATOM_NONE) {
|
|
|
|
wlr_log(L_DEBUG, "TODO: convert selection failed");
|
|
|
|
} else if (selection_notify->target == xwm->atoms[TARGETS]) {
|
|
|
|
xwm_get_selection_targets(xwm);
|
|
|
|
} else {
|
|
|
|
xwm_get_selection_data(xwm);
|
|
|
|
}
|
|
|
|
}
|
2017-11-21 14:25:05 +00:00
|
|
|
|
2017-11-21 15:18:44 +00:00
|
|
|
static int xwm_handle_xfixes_selection_notify(struct wlr_xwm *xwm,
|
|
|
|
xcb_generic_event_t *event) {
|
2017-11-21 14:25:05 +00:00
|
|
|
xcb_xfixes_selection_notify_event_t *xfixes_selection_notify =
|
|
|
|
(xcb_xfixes_selection_notify_event_t *) event;
|
|
|
|
|
|
|
|
|
|
|
|
if (xfixes_selection_notify->owner == XCB_WINDOW_NONE) {
|
|
|
|
if (xwm->selection_owner != xwm->selection_window) {
|
|
|
|
// A real X client selection went away, not our
|
|
|
|
// proxy selection
|
|
|
|
// TODO: Clear the wayland selection (or not)?
|
|
|
|
}
|
|
|
|
|
|
|
|
xwm->selection_owner = XCB_WINDOW_NONE;
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We have to use XCB_TIME_CURRENT_TIME when we claim the
|
|
|
|
// selection, so grab the actual timestamp here so we can
|
|
|
|
// answer TIMESTAMP conversion requests correctly.
|
|
|
|
if (xfixes_selection_notify->owner == xwm->selection_window) {
|
|
|
|
xwm->selection_timestamp = xfixes_selection_notify->timestamp;
|
2017-11-21 15:18:44 +00:00
|
|
|
wlr_log(L_DEBUG, "TODO: our window");
|
2017-11-21 14:25:05 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
xwm->selection_owner = xfixes_selection_notify->owner;
|
|
|
|
|
|
|
|
xwm->incr = 0;
|
|
|
|
// doing this will give a selection notify where we actually handle the sync
|
|
|
|
xcb_convert_selection(xwm->xcb_conn, xwm->selection_window,
|
|
|
|
xwm->atoms[CLIPBOARD],
|
|
|
|
xwm->atoms[TARGETS],
|
|
|
|
xwm->atoms[WL_SELECTION],
|
|
|
|
xfixes_selection_notify->timestamp);
|
|
|
|
|
|
|
|
xcb_flush(xwm->xcb_conn);
|
|
|
|
|
2017-11-20 12:23:17 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2017-11-20 13:51:40 +00:00
|
|
|
int xwm_handle_selection_event(struct wlr_xwm *xwm,
|
|
|
|
xcb_generic_event_t *event) {
|
2017-11-20 12:23:17 +00:00
|
|
|
switch (event->response_type & ~0x80) {
|
|
|
|
case XCB_SELECTION_NOTIFY:
|
|
|
|
xwm_handle_selection_notify(xwm, event);
|
|
|
|
return 1;
|
|
|
|
case XCB_PROPERTY_NOTIFY:
|
|
|
|
return xwm_handle_selection_property_notify(xwm, event);
|
|
|
|
case XCB_SELECTION_REQUEST:
|
|
|
|
xwm_handle_selection_request(xwm, event);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (event->response_type - xwm->xfixes->first_event) {
|
|
|
|
case XCB_XFIXES_SELECTION_NOTIFY:
|
2017-11-21 14:25:05 +00:00
|
|
|
// an X11 window has copied something to the clipboard
|
2017-11-21 15:18:44 +00:00
|
|
|
return xwm_handle_xfixes_selection_notify(xwm, event);
|
2017-11-20 12:23:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
2017-11-20 13:51:40 +00:00
|
|
|
|
|
|
|
void xwm_selection_init(struct wlr_xwm *xwm) {
|
|
|
|
uint32_t values[1], mask;
|
|
|
|
|
|
|
|
xwm->selection_request.requestor = XCB_NONE;
|
|
|
|
|
|
|
|
values[0] = XCB_EVENT_MASK_PROPERTY_CHANGE;
|
|
|
|
xwm->selection_window = xcb_generate_id(xwm->xcb_conn);
|
|
|
|
xcb_create_window(xwm->xcb_conn,
|
|
|
|
XCB_COPY_FROM_PARENT,
|
|
|
|
xwm->selection_window,
|
|
|
|
xwm->screen->root,
|
|
|
|
0, 0,
|
|
|
|
10, 10,
|
|
|
|
0,
|
|
|
|
XCB_WINDOW_CLASS_INPUT_OUTPUT,
|
|
|
|
xwm->screen->root_visual,
|
|
|
|
XCB_CW_EVENT_MASK, values);
|
|
|
|
|
|
|
|
xcb_set_selection_owner(xwm->xcb_conn,
|
|
|
|
xwm->selection_window,
|
|
|
|
xwm->atoms[CLIPBOARD_MANAGER],
|
|
|
|
XCB_TIME_CURRENT_TIME);
|
|
|
|
|
|
|
|
mask =
|
|
|
|
XCB_XFIXES_SELECTION_EVENT_MASK_SET_SELECTION_OWNER |
|
|
|
|
XCB_XFIXES_SELECTION_EVENT_MASK_SELECTION_WINDOW_DESTROY |
|
|
|
|
XCB_XFIXES_SELECTION_EVENT_MASK_SELECTION_CLIENT_CLOSE;
|
|
|
|
xcb_xfixes_select_selection_input(xwm->xcb_conn, xwm->selection_window,
|
|
|
|
xwm->atoms[CLIPBOARD], mask);
|
|
|
|
}
|