Home
last modified time | relevance | path

Searched refs:_NET_WM_CM_Sn (Results 1 – 7 of 7) sorted by relevance

/dports/x11/xcb-util-wm/xcb-util-wm-0.4.1/ewmh/
H A Dewmh.c.m4535 ewmh->_NET_WM_CM_Sn = malloc(sizeof(xcb_atom_t) * ewmh->nb_screens);
542 /* _NET_WM_CM_Sn atoms will be treated differently, by adding them
548 /* First, send InternAtom request for all Atoms except _NET_WM_CM_Sn */
554 /* Then, send InternAtom requests for _NET_WM_CM_Sn and compute
555 _NET_WM_CM_Sn according to the screen number 'n' */
591 ewmh->_NET_WM_CM_Sn[screen_nbr++] = reply->atom;
1465 * _NET_WM_CM_Sn
1473 ewmh->_NET_WM_CM_Sn[screen_nbr]);
1524 ev.data.data32[1] = ewmh->_NET_WM_CM_Sn[screen_nbr];
1544 ewmh->_NET_WM_CM_Sn[screen_nbr], 0);
[all …]
H A Dxcb_ewmh.h.m465 /** _NET_WM_CM_Sn atoms depending on the number of screens */
66 xcb_atom_t *_NET_WM_CM_Sn;
383 free(ewmh->_NET_WM_CM_Sn);
2301 * @brief Set _NET_WM_CM_Sn ownership to the given window
2304 * ownership of a selection named _NET_WM_CM_Sn, where n is the screen
2309 * @param owner The new owner of _NET_WM_CM_Sn selection
2333 * _NET_WM_CM_Sn root window property
2337 * @return The _NET_WM_CM_Sn cookie of the GetSelectionOwner request
2359 * @param cookie The _NET_WM_CM_Sn GetSelectionOwner request cookie.
/dports/x11-wm/e16/e16-1.0.24/
H A DCOMPLIANCE133 [+] _NET_WM_CM_Sn
/dports/multimedia/recordmydesktop/recordmydesktop-0.3.8.1/
H A DChangeLog16 * Compositing Window managers are now recognised through the _NET_WM_CM_Sn
/dports/x11-wm/xcompmgr/xcompmgr-1.1.8/
H A DChangeLog277 Check for _NET_WM_CM_Sn before trying to install ourself as composite manager
279 Check for a selection owner of _NET_WM_CM_Sn is the first thing to do
/dports/x11/wmfocus/wmfocus-1.2.0/cargo-crates/xcb-util-0.3.0/src/ffi/
H A Dewmh.rs14 pub _NET_WM_CM_Sn: *mut xcb_atom_t, field
497 free((*ewmh)._NET_WM_CM_Sn as *mut _); in xcb_ewmh_connection_wipe()
/dports/x11/wmfocus/wmfocus-1.2.0/cargo-crates/xcb-util-0.3.0/src/
H A Dewmh.rs264 slice::from_raw_parts(self.ewmh._NET_WM_CM_Sn, self.ewmh.nb_screens as usize) in WM_CM()