jdk/src/solaris/classes/sun/awt/X11/XAwtState.java
author dcherepanov
Wed, 30 Sep 2009 13:21:51 +0400
changeset 3968 7f37f405ff5a
parent 2 90ce3da70b43
child 5506 202f599c92aa
permissions -rw-r--r--
6853592: VM test nsk.regression.b4261880 fails with "X Error of failed request: BadWindow" inconsistently. Reviewed-by: art, anthony
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-2005 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
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
 * This class is a placeholder for all internal static objects that represent
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
 * system state. We keep our representation up-to-date with actual system
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
 * state by tracking events, such as X Focus, Component under cursor etc.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
 * All attributes should be static private with accessors to simpify change
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
 * tracking.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
package sun.awt.X11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.awt.Component;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.lang.ref.WeakReference;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
class XAwtState {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
     * The mouse is over this component.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
     * If the component is not disabled, it received MOUSE_ENTERED but no MOUSE_EXITED.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
    private static WeakReference componentMouseEnteredRef = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
    static void setComponentMouseEntered(Component component) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
            if (component == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
                componentMouseEnteredRef = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
            if (component != getComponentMouseEntered()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
                componentMouseEnteredRef = new WeakReference(component);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    static Component getComponentMouseEntered() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
            if (componentMouseEnteredRef == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            return (Component)componentMouseEnteredRef.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
     * The XBaseWindow is created with OwnerGrabButtonMask
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
     * (see X vol. 1, 8.3.3.2) so inside the app Key, Motion, and Button events
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
     * are received by the window they actualy happened on, not the grabber.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
     * Then XBaseWindow dispatches them to the grabber. As a result
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
     * XAnyEvent.get_window() returns actual window the event is originated,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
     * though the event is dispatched by  the grabber.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
    private static boolean inManualGrab = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    static boolean isManualGrab() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
        return inManualGrab;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    private static WeakReference grabWindowRef = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
     * The X Active Grab overrides any other active grab by the same
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
     * client see XGrabPointer, XGrabKeyboard
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    static void setGrabWindow(XBaseWindow grabWindow) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        setGrabWindow(grabWindow, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * Automatic passive grab doesn't override active grab see XGrabButton
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    static void setAutoGrabWindow(XBaseWindow grabWindow) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
        setGrabWindow(grabWindow, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    private static void setGrabWindow(XBaseWindow grabWindow, boolean isAutoGrab) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
            if (inManualGrab && isAutoGrab) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            inManualGrab = grabWindow != null && !isAutoGrab;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
            if (grabWindow == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
                grabWindowRef = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            if (grabWindow != getGrabWindow()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
                grabWindowRef = new WeakReference(grabWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    static XBaseWindow getGrabWindow() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            if (grabWindowRef == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            XBaseWindow xbw = (XBaseWindow)grabWindowRef.get();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            if( xbw != null && xbw.isDisposed() ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
                xbw = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
                grabWindowRef = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
            }else if( xbw == null ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
                grabWindowRef = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            return xbw;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
}