// opcode 23 - get selection owner /** * @see <a href="XGetSelectionOwner.html">XGetSelectionOwner</a> */ public Window selection_owner(Atom selection) { Request request = new Request(this, 23, 2); request.write4(selection.id); Data reply = read_reply(request); return((Window)Window.intern(this, reply.read4(8))); }
public Window focus() { return((Window)Window.intern(this.display, focus_id())); }
public Window root() { return((Window)Window.intern(display, root_id())); }