Lines Matching defs:xclient
143 private boolean processXdndStatus(XClientMessageEvent xclient) {
147 if (xclient.get_data(0) != getTargetWindow()) {
151 if ((xclient.get_data(1) & XDnDConstants.XDND_ACCEPT_DROP_FLAG) != 0) {
154 action = XDnDConstants.getJavaActionForXDnDAction(xclient.get_data(4));
162 private boolean processXdndFinished(XClientMessageEvent xclient) {
164 if (xclient.get_data(0) != getTargetWindow()) {
169 boolean success = (xclient.get_data(1) & XDnDConstants.XDND_ACCEPT_DROP_FLAG) != 0;
170 int action = XDnDConstants.getJavaActionForXDnDAction(xclient.get_data(2));
181 public boolean processClientMessage(XClientMessageEvent xclient) {
182 if (xclient.get_message_type() == XDnDConstants.XA_XdndStatus.getAtom()) {
183 return processXdndStatus(xclient);
184 } else if (xclient.get_message_type() == XDnDConstants.XA_XdndFinished.getAtom()) {
185 return processXdndFinished(xclient);
382 public boolean processProxyModeEvent(XClientMessageEvent xclient,
384 if (xclient.get_message_type() == XDnDConstants.XA_XdndStatus.getAtom() ||
385 xclient.get_message_type() == XDnDConstants.XA_XdndFinished.getAtom()) {
387 if (xclient.get_message_type() == XDnDConstants.XA_XdndFinished.getAtom()) {
394 if (xclient.get_window() == sourceWindow) {
400 " get_window=" + xclient.get_window() +
401 " xclient=" + xclient);
403 xclient.set_data(0, xclient.get_window());
404 xclient.set_window(sourceWindow);
410 xclient.pData);