jdk/src/solaris/classes/sun/awt/X11/XMouseInfoPeer.java
author dav
Mon, 07 Apr 2008 16:52:51 +0400
changeset 439 3488710b02f8
parent 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern Summary: Access to interface's fiels via their name rather then implementation Reviewed-by: volk, son
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003-2006 Sun Microsystems, Inc.  All Rights Reserved.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.awt.X11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.Point;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.Window;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.GraphicsEnvironment;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.GraphicsConfiguration;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.awt.GraphicsDevice;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.awt.peer.MouseInfoPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
public class XMouseInfoPeer implements MouseInfoPeer {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
     * Package-private constructor to prevent instantiation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
    XMouseInfoPeer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    public int fillPointWithCoords(Point point) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
        long display = XToolkit.getDisplay();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
        GraphicsEnvironment ge = GraphicsEnvironment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
                                     getLocalGraphicsEnvironment();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        GraphicsDevice[] gds = ge.getScreenDevices();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
        int gdslen = gds.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
            for (int i = 0; i < gdslen; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
                long screenRoot = XlibWrapper.RootWindow(display, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
                boolean pointerFound = XlibWrapper.XQueryPointer(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
                                           display, screenRoot,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
                                           XlibWrapper.larg1,  // root_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
                                           XlibWrapper.larg2,  // child_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
                                           XlibWrapper.larg3,  // xr_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
                                           XlibWrapper.larg4,  // yr_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                                           XlibWrapper.larg5,  // xw_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                                           XlibWrapper.larg6,  // yw_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                                           XlibWrapper.larg7); // mask_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                if (pointerFound) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                    point.x = Native.getInt(XlibWrapper.larg3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                    point.y = Native.getInt(XlibWrapper.larg4);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        // this should never happen
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        assert false : "No pointer found in the system.";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    public boolean isWindowUnderMouse(Window w) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        long display = XToolkit.getDisplay();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        // java.awt.Component.findUnderMouseInWindow checks that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        // the peer is non-null by checking that the component
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        // is showing.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
        long contentWindow = ((XWindow)w.getPeer()).getContentWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        long parent = XlibUtil.getParentWindow(contentWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
        try
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
            boolean windowOnTheSameScreen = XlibWrapper.XQueryPointer(display, parent,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
                                  XlibWrapper.larg1, // root_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
                                  XlibWrapper.larg8, // child_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
                                  XlibWrapper.larg3, // root_x_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                                  XlibWrapper.larg4, // root_y_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
                                  XlibWrapper.larg5, // win_x_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
                                  XlibWrapper.larg6, // win_y_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
                                  XlibWrapper.larg7); //  mask_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            long siblingWindow = Native.getWindow(XlibWrapper.larg8);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            return (siblingWindow == contentWindow && windowOnTheSameScreen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        finally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
}