xwm: handle selection stubs

This commit is contained in:
Tony Crisci 2017-11-21 10:18:44 -05:00
parent 1f976a0f25
commit c67cf2e9e4
2 changed files with 26 additions and 10 deletions

View File

@ -24,21 +24,36 @@ static int xwm_handle_selection_property_notify(struct wlr_xwm *xwm,
return 0; return 0;
} }
static void xwm_handle_selection_notify(struct wlr_xwm *xwm,
xcb_generic_event_t *event) {
wlr_log(L_DEBUG, "TODO: SELECTION NOTIFY");
}
static void xwm_handle_selection_request(struct wlr_xwm *xwm, static void xwm_handle_selection_request(struct wlr_xwm *xwm,
xcb_generic_event_t *event) { xcb_generic_event_t *event) {
wlr_log(L_DEBUG, "TODO: SELECTION REQUEST"); wlr_log(L_DEBUG, "TODO: SELECTION REQUEST");
return; return;
} }
static int weston_wm_handle_xfixes_selection_notify(struct wlr_xwm *xwm, static void xwm_get_selection_targets(struct wlr_xwm *xwm) {
xcb_generic_event_t *event) { wlr_log(L_DEBUG, "TODO: GET SELECTION TARGETS");
wlr_log(L_DEBUG, "TODO: XFIXES SELECTION NOTIFY"); }
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,
xcb_generic_event_t *event) {
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);
}
}
static int xwm_handle_xfixes_selection_notify(struct wlr_xwm *xwm,
xcb_generic_event_t *event) {
xcb_xfixes_selection_notify_event_t *xfixes_selection_notify = xcb_xfixes_selection_notify_event_t *xfixes_selection_notify =
(xcb_xfixes_selection_notify_event_t *) event; (xcb_xfixes_selection_notify_event_t *) event;
@ -60,6 +75,7 @@ static int weston_wm_handle_xfixes_selection_notify(struct wlr_xwm *xwm,
// answer TIMESTAMP conversion requests correctly. // answer TIMESTAMP conversion requests correctly.
if (xfixes_selection_notify->owner == xwm->selection_window) { if (xfixes_selection_notify->owner == xwm->selection_window) {
xwm->selection_timestamp = xfixes_selection_notify->timestamp; xwm->selection_timestamp = xfixes_selection_notify->timestamp;
wlr_log(L_DEBUG, "TODO: our window");
return 1; return 1;
} }
@ -95,7 +111,7 @@ int xwm_handle_selection_event(struct wlr_xwm *xwm,
switch (event->response_type - xwm->xfixes->first_event) { switch (event->response_type - xwm->xfixes->first_event) {
case XCB_XFIXES_SELECTION_NOTIFY: case XCB_XFIXES_SELECTION_NOTIFY:
// an X11 window has copied something to the clipboard // an X11 window has copied something to the clipboard
return weston_wm_handle_xfixes_selection_notify(xwm, event); return xwm_handle_xfixes_selection_notify(xwm, event);
} }
return 0; return 0;

View File

@ -32,9 +32,9 @@ enum atom_name {
_NET_WM_STATE_MAXIMIZED_HORZ, _NET_WM_STATE_MAXIMIZED_HORZ,
WM_STATE, WM_STATE,
CLIPBOARD, CLIPBOARD,
CLIPBOARD_MANAGER,
WL_SELECTION, WL_SELECTION,
TARGETS, TARGETS,
CLIPBOARD_MANAGER,
ATOM_LAST, ATOM_LAST,
}; };