src/java.desktop/unix/classes/sun/awt/X11/XMouseInfoPeer.java
author erikj
Tue, 12 Sep 2017 19:03:39 +0200
changeset 47216 71c04702a3d5
parent 34395 jdk/src/java.desktop/unix/classes/sun/awt/X11/XMouseInfoPeer.java@2ac7e99f7f4a
child 49782 7cbb8bd1fc29
permissions -rw-r--r--
8187443: Forest Consolidation: Move files to unified layout Reviewed-by: darcy, ihse
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
     2
 * Copyright (c) 2003, 2015, Oracle and/or its affiliates. All rights reserved.
2
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
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
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
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 2
diff changeset
    23
 * questions.
2
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.GraphicsDevice;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.awt.peer.MouseInfoPeer;
34395
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 30469
diff changeset
    33
import sun.awt.X11GraphicsDevice;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
    35
import sun.awt.AWTAccessor;
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
    36
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
public class XMouseInfoPeer implements MouseInfoPeer {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
     * Package-private constructor to prevent instantiation.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
    XMouseInfoPeer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    public int fillPointWithCoords(Point point) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        long display = XToolkit.getDisplay();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        GraphicsEnvironment ge = GraphicsEnvironment.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
                                     getLocalGraphicsEnvironment();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
        GraphicsDevice[] gds = ge.getScreenDevices();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
        int gdslen = gds.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
            for (int i = 0; i < gdslen; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
                long screenRoot = XlibWrapper.RootWindow(display, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
                boolean pointerFound = XlibWrapper.XQueryPointer(
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
                                           display, screenRoot,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
                                           XlibWrapper.larg1,  // root_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
                                           XlibWrapper.larg2,  // child_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
                                           XlibWrapper.larg3,  // xr_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
                                           XlibWrapper.larg4,  // yr_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
                                           XlibWrapper.larg5,  // xw_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                                           XlibWrapper.larg6,  // yw_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                                           XlibWrapper.larg7); // mask_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
                if (pointerFound) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
                    point.x = Native.getInt(XlibWrapper.larg3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
                    point.y = Native.getInt(XlibWrapper.larg4);
34395
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 30469
diff changeset
    68
                    GraphicsDevice device = gds[i];
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 30469
diff changeset
    69
                    if (device instanceof X11GraphicsDevice) {
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 30469
diff changeset
    70
                        int scale = ((X11GraphicsDevice) device).getScaleFactor();
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 30469
diff changeset
    71
                        point.x = XlibUtil.scaleDown(point.x, scale);
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 30469
diff changeset
    72
                        point.y = XlibUtil.scaleDown(point.y, scale);
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 30469
diff changeset
    73
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
                    return i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        // this should never happen
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        assert false : "No pointer found in the system.";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
28231
b608ffcaed74 8066621: Suppress deprecation warnings in java.desktop module
darcy
parents: 25859
diff changeset
    86
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    public boolean isWindowUnderMouse(Window w) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        long display = XToolkit.getDisplay();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        // java.awt.Component.findUnderMouseInWindow checks that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        // the peer is non-null by checking that the component
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        // is showing.
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
    94
        XWindow peer = AWTAccessor.getComponentAccessor().getPeer(w);
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
    95
        long contentWindow = peer.getContentWindow();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        long parent = XlibUtil.getParentWindow(contentWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
        try
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
            boolean windowOnTheSameScreen = XlibWrapper.XQueryPointer(display, parent,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
                                  XlibWrapper.larg1, // root_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
                                  XlibWrapper.larg8, // child_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
                                  XlibWrapper.larg3, // root_x_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
                                  XlibWrapper.larg4, // root_y_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
                                  XlibWrapper.larg5, // win_x_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                                  XlibWrapper.larg6, // win_y_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
                                  XlibWrapper.larg7); //  mask_return
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            long siblingWindow = Native.getWindow(XlibWrapper.larg8);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            return (siblingWindow == contentWindow && windowOnTheSameScreen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        finally
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
}