jdk/src/solaris/classes/sun/awt/X11/XWindowPeer.java
author ant
Wed, 09 Apr 2008 09:37:07 +0400
changeset 442 687798d7d7b6
parent 439 3488710b02f8
child 449 7820f232278d
permissions -rw-r--r--
6522725: Component in a minimized Frame has focus and receives key events Summary: XAWT: a window natively focused may request focus in it only synthetically Reviewed-by: son
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
116
9c43d9eb1029 6645856: static field XWindowPeer.defaultFont hides XWindow.defaultFont
son
parents: 2
diff changeset
     2
 * Copyright 2002-2008 Sun Microsystems, Inc.  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
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
package sun.awt.X11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.event.ComponentEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.event.FocusEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.event.WindowEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.awt.peer.ComponentPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.awt.peer.WindowPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.util.ArrayList;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.util.HashSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.util.Iterator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.util.Set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.util.Vector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.util.logging.Level;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.util.logging.Logger;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import sun.awt.ComponentAccessor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import sun.awt.WindowAccessor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import sun.awt.DisplayChangedListener;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import sun.awt.SunToolkit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import sun.awt.X11GraphicsDevice;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import sun.awt.X11GraphicsEnvironment;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
class XWindowPeer extends XPanelPeer implements WindowPeer,
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
    53
                                                DisplayChangedListener {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private static final Logger log = Logger.getLogger("sun.awt.X11.XWindowPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
    private static final Logger focusLog = Logger.getLogger("sun.awt.X11.focus.XWindowPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    private static final Logger insLog = Logger.getLogger("sun.awt.X11.insets.XWindowPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    private static final Logger grabLog = Logger.getLogger("sun.awt.X11.grab.XWindowPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    private static final Logger iconLog = Logger.getLogger("sun.awt.X11.icon.XWindowPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    // should be synchronized on awtLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    private static Set<XWindowPeer> windows = new HashSet<XWindowPeer>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    static XAtom wm_protocols;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    static XAtom wm_delete_window;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
    static XAtom wm_take_focus;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    Insets insets = new Insets( 0, 0, 0, 0 );
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    XWindowAttributesData winAttr;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
    private boolean cachedFocusableWindow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    XWarningWindow warningWindow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    private boolean alwaysOnTop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    PropMwmHints mwm_hints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    private boolean locationByPlatform;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    Dialog modalBlocker;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    boolean delayedModalBlocking = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    Dimension targetMinimumSize = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    private XWindowPeer ownerPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    // used for modal blocking to keep existing z-order
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    protected XWindowPeer prevTransientFor, nextTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    // value of WM_TRANSIENT_FOR hint set on this window
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    private XWindowPeer curRealTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    private boolean grab = false; // Whether to do a grab during showing
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    private boolean isMapped = false; // Is this window mapped or not
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    private boolean stateChanged; // Indicates whether the value on savedState is valid
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    private int savedState; // Holds last known state of the top-level window
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    private boolean mustControlStackPosition = false; // Am override-redirect not on top
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    private XEventDispatcher rootPropertyEventDispatcher = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
     * Focus related flags
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    private boolean isUnhiding = false;             // Is the window unhiding.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    private boolean isBeforeFirstMapNotify = false; // Is the window (being shown) between
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
                                                    //    setVisible(true) & handleMapNotify().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    // It need to be accessed from XFramePeer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    protected Vector <ToplevelStateListener> toplevelStateListeners = new Vector<ToplevelStateListener>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    XWindowPeer(XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        super(params.putIfNull(PARENT_WINDOW, Long.valueOf(0)));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    XWindowPeer(Window target) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        super(new XCreateWindowParams(new Object[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
            TARGET, target,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            PARENT_WINDOW, Long.valueOf(0)}));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
     * This constant defines icon size recommended for using.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
     * Apparently, we should use XGetIconSizes which should
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
     * return icon sizes would be most appreciated by the WM.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
     * However, XGetIconSizes always returns 0 for some reason.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * So the constant has been introduced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    private static final int PREFERRED_SIZE_FOR_ICON = 128;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
     * Sometimes XChangeProperty(_NET_WM_ICON) doesn't work if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
     * image buffer is too large. This constant holds maximum
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
     * length of buffer which can be used with _NET_WM_ICON hint.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
     * It holds int's value.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    private static final int MAXIMUM_BUFFER_LENGTH_NET_WM_ICON = (2<<15) - 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    void preInit(XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        params.put(REPARENTED,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
                   Boolean.valueOf(isOverrideRedirect() || isSimpleWindow()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        super.preInit(params);
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
   136
        params.putIfNull(BIT_GRAVITY, Integer.valueOf(XConstants.NorthWestGravity));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
   138
        savedState = XUtilConstants.WithdrawnState;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        XA_NET_WM_STATE = XAtom.get("_NET_WM_STATE");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        winAttr = new XWindowAttributesData();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        insets = new Insets(0,0,0,0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        params.put(OVERRIDE_REDIRECT, Boolean.valueOf(isOverrideRedirect()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        SunToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            windows.add(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
            if (wm_protocols == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
                wm_protocols = XAtom.get("WM_PROTOCOLS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                wm_delete_window = XAtom.get("WM_DELETE_WINDOW");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                wm_take_focus = XAtom.get("WM_TAKE_FOCUS");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
            SunToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        cachedFocusableWindow = isFocusableWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        Font f = target.getFont();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        if (f == null) {
116
9c43d9eb1029 6645856: static field XWindowPeer.defaultFont hides XWindow.defaultFont
son
parents: 2
diff changeset
   162
            f = XWindow.getDefaultFont();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            target.setFont(f);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            // we should not call setFont because it will call a repaint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
            // which the peer may not be ready to do yet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        Color c = target.getBackground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        if (c == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            Color background = SystemColor.window;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
            target.setBackground(background);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
            // we should not call setBackGround because it will call a repaint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
            // which the peer may not be ready to do yet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
        c = target.getForeground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        if (c == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            target.setForeground(SystemColor.windowText);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
            // we should not call setForeGround because it will call a repaint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            // which the peer may not be ready to do yet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
        alwaysOnTop = ((Window)target).isAlwaysOnTop() && ((Window)target).isAlwaysOnTopSupported();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        GraphicsConfiguration gc = getGraphicsConfiguration();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        ((X11GraphicsDevice)gc.getDevice()).addDisplayChangedListener(this);
129
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   185
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   186
        Rectangle bounds = (Rectangle)(params.get(BOUNDS));
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   187
        params.put(BOUNDS, constrainBounds(bounds.x, bounds.y, bounds.width, bounds.height));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
    private void initWMProtocols() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        wm_protocols.setAtomListProperty(this, getWMProtocols());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
     * Returns list of protocols which should be installed on this window.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
     * Descendants can override this method to add class-specific protocols
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    protected XAtomList getWMProtocols() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        // No protocols on simple window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
        return new XAtomList();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
    protected String getWMName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
        String name = target.getName();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
        if (name == null || name.trim().equals("")) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
            name = " ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
        return name;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
    void postInit(XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        super.postInit(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        // Init WM_PROTOCOLS atom
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        initWMProtocols();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        // Set WM_TRANSIENT_FOR and group_leader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        Window t_window = (Window)target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        Window owner = t_window.getOwner();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
        if (owner != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
            ownerPeer = (XWindowPeer)owner.getPeer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            if (focusLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                focusLog.fine("Owner is " + owner);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
                focusLog.fine("Owner peer is " + ownerPeer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                focusLog.fine("Owner X window " + Long.toHexString(ownerPeer.getWindow()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
                focusLog.fine("Owner content X window " + Long.toHexString(ownerPeer.getContentWindow()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            // as owner window may be an embedded window, we must get a toplevel window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            // to set as TRANSIENT_FOR hint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            long ownerWindow = ownerPeer.getWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
            if (ownerWindow != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
                XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
                    // Set WM_TRANSIENT_FOR
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
                    if (focusLog.isLoggable(Level.FINE)) focusLog.fine("Setting transient on " + Long.toHexString(getWindow())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
                                                                       + " for " + Long.toHexString(ownerWindow));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
                    setToplevelTransientFor(this, ownerPeer, false, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
                    // Set group leader
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
                    XWMHints hints = getWMHints();
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
   242
                    hints.set_flags(hints.get_flags() | (int)XUtilConstants.WindowGroupHint);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
                    hints.set_window_group(ownerWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
                    XlibWrapper.XSetWMHints(XToolkit.getDisplay(), getWindow(), hints.pData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
                finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
                    XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
         // Init warning window(for applets)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
        if (((Window)target).getWarningString() != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
            // accessSystemTray permission allows to display TrayIcon, TrayIcon tooltip
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
            // and TrayIcon balloon windows without a warning window.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
            if (!WindowAccessor.isTrayIconWindow((Window)target)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
                warningWindow = new XWarningWindow((Window)target, getWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
        setSaveUnder(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
        XWM.requestWMExtents(getWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        updateIconImages();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    public void updateIconImages() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        Window target = (Window)this.target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        java.util.List<Image> iconImages = ((Window)target).getIconImages();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        XWindowPeer ownerPeer = getOwnerPeer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        winAttr.icons = new ArrayList<XIconInfo>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        if (iconImages.size() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
            //read icon images from target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            winAttr.iconsInherited = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
            for (Iterator<Image> i = iconImages.iterator(); i.hasNext(); ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
                Image image = i.next();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
                if (image == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
                    if (log.isLoggable(Level.FINEST)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
                        log.finest("XWindowPeer.updateIconImages: Skipping the image passed into Java because it's null.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
                XIconInfo iconInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                    iconInfo = new XIconInfo(image);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                } catch (Exception e){
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                    if (log.isLoggable(Level.FINEST)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                        log.finest("XWindowPeer.updateIconImages: Perhaps the image passed into Java is broken. Skipping this icon.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
                if (iconInfo.isValid()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
                    winAttr.icons.add(iconInfo);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        // Fix for CR#6425089
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
        winAttr.icons = normalizeIconImages(winAttr.icons);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        if (winAttr.icons.size() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            //target.icons is empty or all icon images are broken
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
            if (ownerPeer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
                //icon is inherited from parent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
                winAttr.iconsInherited = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
                winAttr.icons = ownerPeer.getIconInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
                //default icon is used
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
                winAttr.iconsInherited = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
                winAttr.icons = getDefaultIconInfo();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
        recursivelySetIcon(winAttr.icons);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * Sometimes XChangeProperty(_NET_WM_ICON) doesn't work if
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * image buffer is too large. This function help us accommodate
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     * initial list of the icon images to certainly-acceptable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
     * It does scale some of these icons to appropriate size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
     * if it's necessary.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
    static java.util.List<XIconInfo> normalizeIconImages(java.util.List<XIconInfo> icons) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
        java.util.List<XIconInfo> result = new ArrayList<XIconInfo>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
        int totalLength = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
        boolean haveLargeIcon = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
        for (XIconInfo icon : icons) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
            int width = icon.getWidth();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            int height = icon.getHeight();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
            int length = icon.getRawLength();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
            if (width > PREFERRED_SIZE_FOR_ICON || height > PREFERRED_SIZE_FOR_ICON) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
                if (haveLargeIcon) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
                int scaledWidth = width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
                int scaledHeight = height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
                while (scaledWidth > PREFERRED_SIZE_FOR_ICON ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
                       scaledHeight > PREFERRED_SIZE_FOR_ICON) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
                    scaledWidth = scaledWidth / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
                    scaledHeight = scaledHeight / 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
                icon.setScaledSize(scaledWidth, scaledHeight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
                length = icon.getRawLength();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
            if (totalLength + length <= MAXIMUM_BUFFER_LENGTH_NET_WM_ICON) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
                totalLength += length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
                result.add(icon);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
                if (width > PREFERRED_SIZE_FOR_ICON || height > PREFERRED_SIZE_FOR_ICON) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                    haveLargeIcon = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
        if (iconLog.isLoggable(Level.FINEST)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
            iconLog.log(Level.FINEST, ">>> Length_ of buffer of icons data: " + totalLength +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
                                      ", maximum length: " + MAXIMUM_BUFFER_LENGTH_NET_WM_ICON);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
        return result;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
     * Dumps each icon from the list
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
    static void dumpIcons(java.util.List<XIconInfo> icons) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
        if (iconLog.isLoggable(Level.FINEST)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
            iconLog.log(Level.FINEST, ">>> Sizes of icon images:");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
            for (Iterator<XIconInfo> i = icons.iterator(); i.hasNext(); ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
                iconLog.log(Level.FINEST, "    {0}", i.next());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    public void recursivelySetIcon(java.util.List<XIconInfo> icons) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
        dumpIcons(winAttr.icons);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        setIconHints(icons);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
        Window target = (Window)this.target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
        Window[] children = target.getOwnedWindows();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        int cnt = children.length;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
        for (int i = 0; i < cnt; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
            ComponentPeer childPeer = children[i].getPeer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
            if (childPeer != null && childPeer instanceof XWindowPeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
                if (((XWindowPeer)childPeer).winAttr.iconsInherited) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
                    ((XWindowPeer)childPeer).winAttr.icons = icons;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
                    ((XWindowPeer)childPeer).recursivelySetIcon(icons);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    java.util.List<XIconInfo> getIconInfo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
        return winAttr.icons;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
    void setIconHints(java.util.List<XIconInfo> icons) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
        //This does nothing for XWindowPeer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
        //It's overriden in XDecoratedPeer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
    private static ArrayList<XIconInfo> defaultIconInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    protected synchronized static java.util.List<XIconInfo> getDefaultIconInfo() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
        if (defaultIconInfo == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
            defaultIconInfo = new ArrayList<XIconInfo>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
            if (XlibWrapper.dataModel == 32) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                defaultIconInfo.add(new XIconInfo(XAWTIcon32_java_icon16_png.java_icon16_png));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
                defaultIconInfo.add(new XIconInfo(XAWTIcon32_java_icon24_png.java_icon24_png));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
                defaultIconInfo.add(new XIconInfo(XAWTIcon32_java_icon32_png.java_icon32_png));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
                defaultIconInfo.add(new XIconInfo(XAWTIcon32_java_icon48_png.java_icon48_png));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
                defaultIconInfo.add(new XIconInfo(XAWTIcon64_java_icon16_png.java_icon16_png));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
                defaultIconInfo.add(new XIconInfo(XAWTIcon64_java_icon24_png.java_icon24_png));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                defaultIconInfo.add(new XIconInfo(XAWTIcon64_java_icon32_png.java_icon32_png));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
                defaultIconInfo.add(new XIconInfo(XAWTIcon64_java_icon48_png.java_icon48_png));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
        return defaultIconInfo;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
    public void updateMinimumSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
        //This function only saves minimumSize value in XWindowPeer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
        //Setting WMSizeHints is implemented in XDecoratedPeer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        targetMinimumSize = (((Component)target).isMinimumSizeSet()) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
            ((Component)target).getMinimumSize() : null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    public Dimension getTargetMinimumSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
        return (targetMinimumSize == null) ? null : new Dimension(targetMinimumSize);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
    public XWindowPeer getOwnerPeer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   434
        return ownerPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   435
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
129
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   437
    // This method is overriden at the XDecoratedPeer to handle
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   438
    // decorated windows a bit differently.
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   439
    Rectangle constrainBounds(int x, int y, int width, int height) {
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   440
        // We don't restrict the setBounds() operation if the code is trusted.
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   441
        if (!hasWarningWindow()) {
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   442
            return new Rectangle(x, y, width, height);
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   443
        }
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   444
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   445
        // The window bounds should be within the visible part of the screen
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   446
        int newX = x;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   447
        int newY = y;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   448
        int newW = width;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   449
        int newH = height;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   450
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   451
        // Now check each point is within the visible part of the screen
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   452
        GraphicsConfiguration gc = ((Window)target).getGraphicsConfiguration();
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   453
        Rectangle sB = gc.getBounds();
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   454
        Insets sIn = ((Window)target).getToolkit().getScreenInsets(gc);
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   455
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   456
        int screenX = sB.x + sIn.left;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   457
        int screenY = sB.y + sIn.top;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   458
        int screenW = sB.width - sIn.left - sIn.right;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   459
        int screenH = sB.height - sIn.top - sIn.bottom;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   460
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   461
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   462
        // First make sure the size is withing the visible part of the screen
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   463
        if (newW > screenW) {
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   464
            newW = screenW;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   465
        }
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   466
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   467
        if (newH > screenH) {
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   468
            newH = screenH;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   469
        }
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   470
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   471
        // Tweak the location if needed
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   472
        if (newX < screenX) {
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   473
            newX = screenX;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   474
        } else if (newX + newW > screenX + screenW) {
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   475
            newX = screenX + screenW - newW;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   476
        }
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   477
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   478
        if (newY < screenY) {
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   479
            newY = screenY;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   480
        } else if (newY + newH > screenY + screenH) {
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   481
            newY = screenY + screenH - newH;
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   482
        }
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   483
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   484
        return new Rectangle(newX, newY, newW, newH);
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   485
    }
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   486
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
    //Fix for 6318144: PIT:Setting Min Size bigger than current size enlarges
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
    //the window but fails to revalidate, Sol-CDE
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
    //This bug is regression for
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
    //5025858: Resizing a decorated frame triggers componentResized event twice.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
    //Since events are not posted from Component.setBounds we need to send them here.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    //Note that this function is overriden in XDecoratedPeer so event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
    //posting is not changing for decorated peers
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    public void setBounds(int x, int y, int width, int height, int op) {
129
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   495
        Rectangle newBounds = constrainBounds(x, y, width, height);
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   496
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
            Rectangle oldBounds = getBounds();
129
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   500
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   501
            super.setBounds(newBounds.x, newBounds.y, newBounds.width, newBounds.height, op);
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
   502
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
            Rectangle bounds = getBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
            XSizeHints hints = getHints();
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
   506
            setSizeHints(hints.get_flags() | XUtilConstants.PPosition | XUtilConstants.PSize,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
                             bounds.x, bounds.y, bounds.width, bounds.height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
            XWM.setMotifDecor(this, false, 0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
            XNETProtocol protocol = XWM.getWM().getNETProtocol();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
            if (protocol != null && protocol.active()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
                XAtomList net_wm_state = getNETWMState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
                net_wm_state.add(protocol.XA_NET_WM_STATE_SKIP_TASKBAR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
                setNETWMState(net_wm_state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
            if (!bounds.getSize().equals(oldBounds.getSize())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                postEventToEventQueue(new ComponentEvent(getEventSource(), ComponentEvent.COMPONENT_RESIZED));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
            if (!bounds.getLocation().equals(oldBounds.getLocation())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                postEventToEventQueue(new ComponentEvent(getEventSource(), ComponentEvent.COMPONENT_MOVED));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    void updateFocusability() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
        updateFocusableWindowState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
            XWMHints hints = getWMHints();
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
   534
            hints.set_flags(hints.get_flags() | (int)XUtilConstants.InputHint);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
            hints.set_input(false/*isNativelyNonFocusableWindow() ? (0):(1)*/);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
            XlibWrapper.XSetWMHints(XToolkit.getDisplay(), getWindow(), hints.pData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
        finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
    public Insets getInsets() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
        Insets in = (Insets)(insets.clone());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        in.top += getWarningWindowHeight();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
        return in;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
    // NOTE: This method may be called by privileged threads.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
    //       DO NOT INVOKE CLIENT CODE ON THIS THREAD!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    public void handleIconify() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        postEvent(new WindowEvent((Window)target, WindowEvent.WINDOW_ICONIFIED));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    // NOTE: This method may be called by privileged threads.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
    //       DO NOT INVOKE CLIENT CODE ON THIS THREAD!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    public void handleDeiconify() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        postEvent(new WindowEvent((Window)target, WindowEvent.WINDOW_DEICONIFIED));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
    // NOTE: This method may be called by privileged threads.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    //       DO NOT INVOKE CLIENT CODE ON THIS THREAD!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
    public void handleStateChange(int oldState, int newState) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        postEvent(new WindowEvent((Window)target,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                                  WindowEvent.WINDOW_STATE_CHANGED,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                                  oldState, newState));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
     * DEPRECATED:  Replaced by getInsets().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    public Insets insets() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        return getInsets();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    boolean isAutoRequestFocus() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
        if (XToolkit.isToolkitThread()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
            return WindowAccessor.isAutoRequestFocus((Window)target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
            return ((Window)target).isAutoRequestFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
    /*
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   585
     * Retrives real native focused window and converts it into Java peer.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
    static XWindowPeer getNativeFocusedWindowPeer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
        XBaseWindow baseWindow = XToolkit.windowToXWindow(xGetInputFocus());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
        return (baseWindow instanceof XWindowPeer) ? (XWindowPeer)baseWindow :
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
               (baseWindow instanceof XFocusProxyWindow) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
               ((XFocusProxyWindow)baseWindow).getOwner() : null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   594
    /*
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   595
     * Retrives real native focused window and converts it into Java window.
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   596
     */
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   597
    static Window getNativeFocusedWindow() {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   598
        XWindowPeer peer = getNativeFocusedWindowPeer();
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   599
        return peer != null ? (Window)peer.target : null;
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   600
    }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   601
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
    boolean isFocusableWindow() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        if (XToolkit.isToolkitThread() || SunToolkit.isAWTLockHeldByCurrentThread())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
            return cachedFocusableWindow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
            return ((Window)target).isFocusableWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
    /* WARNING: don't call client code in this method! */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    boolean isFocusedWindowModalBlocker() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    long getFocusTargetWindow() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
        return getContentWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
     * Returns whether or not this window peer has native X window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
     * configured as non-focusable window. It might happen if:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
     * - Java window is non-focusable
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
     * - Java window is simple Window(not Frame or Dialog)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
    boolean isNativelyNonFocusableWindow() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        if (XToolkit.isToolkitThread() || SunToolkit.isAWTLockHeldByCurrentThread())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
            return isSimpleWindow() || !cachedFocusableWindow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
            return isSimpleWindow() || !(((Window)target).isFocusableWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
    public void handleWindowFocusIn_Dispatch() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
        if (EventQueue.isDispatchThread()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
            XKeyboardFocusManagerPeer.setCurrentNativeFocusedWindow((Window) target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
            target.dispatchEvent(new WindowEvent((Window)target, WindowEvent.WINDOW_GAINED_FOCUS));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
    public void handleWindowFocusInSync(long serial) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        WindowEvent we = new WindowEvent((Window)target, WindowEvent.WINDOW_GAINED_FOCUS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
        XKeyboardFocusManagerPeer.setCurrentNativeFocusedWindow((Window) target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        sendEvent(we);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
    // NOTE: This method may be called by privileged threads.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    //       DO NOT INVOKE CLIENT CODE ON THIS THREAD!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    public void handleWindowFocusIn(long serial) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
        WindowEvent we = new WindowEvent((Window)target, WindowEvent.WINDOW_GAINED_FOCUS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
        /* wrap in Sequenced, then post*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
        XKeyboardFocusManagerPeer.setCurrentNativeFocusedWindow((Window) target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        postEvent(wrapInSequenced((AWTEvent) we));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
    // NOTE: This method may be called by privileged threads.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
    //       DO NOT INVOKE CLIENT CODE ON THIS THREAD!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
    public void handleWindowFocusOut(Window oppositeWindow, long serial) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
        WindowEvent we = new WindowEvent((Window)target, WindowEvent.WINDOW_LOST_FOCUS, oppositeWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        XKeyboardFocusManagerPeer.setCurrentNativeFocusedWindow(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        XKeyboardFocusManagerPeer.setCurrentNativeFocusOwner(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        /* wrap in Sequenced, then post*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
        postEvent(wrapInSequenced((AWTEvent) we));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
    public void handleWindowFocusOutSync(Window oppositeWindow, long serial) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
        WindowEvent we = new WindowEvent((Window)target, WindowEvent.WINDOW_LOST_FOCUS, oppositeWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
        XKeyboardFocusManagerPeer.setCurrentNativeFocusedWindow(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
        XKeyboardFocusManagerPeer.setCurrentNativeFocusOwner(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
        sendEvent(we);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
/* --- DisplayChangedListener Stuff --- */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
    /* Xinerama
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
     * called to check if we've been moved onto a different screen
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
     * Based on checkNewXineramaScreen() in awt_GraphicsEnv.c
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
    public void checkIfOnNewScreen(Rectangle newBounds) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
        if (!XToolkit.localEnv.runningXinerama()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
        if (log.isLoggable(Level.FINEST)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
            log.finest("XWindowPeer: Check if we've been moved to a new screen since we're running in Xinerama mode");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
        int area = newBounds.width * newBounds.height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
        int intAmt, vertAmt, horizAmt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
        int largestAmt = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
        int curScreenNum = ((X11GraphicsDevice)getGraphicsConfiguration().getDevice()).getScreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
        int newScreenNum = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
        GraphicsDevice gds[] = XToolkit.localEnv.getScreenDevices();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
        Rectangle screenBounds;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
        for (int i = 0; i < gds.length; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
            screenBounds = gds[i].getDefaultConfiguration().getBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
            if (newBounds.intersects(screenBounds)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
                horizAmt = Math.min(newBounds.x + newBounds.width,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
                                    screenBounds.x + screenBounds.width) -
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
                           Math.max(newBounds.x, screenBounds.x);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
                vertAmt = Math.min(newBounds.y + newBounds.height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
                                   screenBounds.y + screenBounds.height)-
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
                          Math.max(newBounds.y, screenBounds.y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
                intAmt = horizAmt * vertAmt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
                if (intAmt == area) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
                    // Completely on this screen - done!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
                    newScreenNum = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
                if (intAmt > largestAmt) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
                    largestAmt = intAmt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
                    newScreenNum = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
        if (newScreenNum != curScreenNum) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
            if (log.isLoggable(Level.FINEST)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
                log.finest("XWindowPeer: Moved to a new screen");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
            draggedToNewScreen(newScreenNum);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    /* Xinerama
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
     * called to update our GC when dragged onto another screen
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
    public void draggedToNewScreen(int screenNum) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        executeDisplayChangedOnEDT(screenNum);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
     * Helper method that executes the displayChanged(screen) method on
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
     * the event dispatch thread.  This method is used in the Xinerama case
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
     * and after display mode change events.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
    private void executeDisplayChangedOnEDT(final int screenNum) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        Runnable dc = new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
            public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
                // Updates this window's GC and notifies all the children.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
                // See XPanelPeer/XCanvasPeer.displayChanged(int) for details.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
                displayChanged(screenNum);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        SunToolkit.executeOnEventHandlerThread((Component)target, dc);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
     * From the DisplayChangedListener interface; called from
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
     * X11GraphicsDevice when the display mode has been changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    public void displayChanged() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        GraphicsConfiguration gc = getGraphicsConfiguration();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
        int curScreenNum = ((X11GraphicsDevice)gc.getDevice()).getScreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        executeDisplayChangedOnEDT(curScreenNum);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
     * From the DisplayChangedListener interface; top-levels do not need
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
     * to react to this event.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    public void paletteChanged() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
     * Overridden to check if we need to update our GraphicsDevice/Config
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     * Added for 4934052.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
    public void handleConfigureNotifyEvent(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
        // TODO: We create an XConfigureEvent every time we override
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        // handleConfigureNotify() - too many!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
        XConfigureEvent xe = xev.get_xconfigure();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
        checkIfOnNewScreen(new Rectangle(xe.get_x(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                                         xe.get_y(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
                                         xe.get_width(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
                                         xe.get_height()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
        // Don't call super until we've handled a screen change.  Otherwise
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
        // there could be a race condition in which a ComponentListener could
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        // see the old screen.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
        super.handleConfigureNotifyEvent(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        // for 5085647: no applet warning window visible
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
        updateChildrenSizes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    final void requestXFocus(long time) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
        requestXFocus(time, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
    final void requestXFocus() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
        requestXFocus(0, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     * Requests focus to this top-level. Descendants should override to provide
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
     * implementations based on a class of top-level.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
    protected void requestXFocus(long time, boolean timeProvided) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
        // Since in XAWT focus is synthetic and all basic Windows are
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
        // override_redirect all we can do is check whether our parent
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
        // is active. If it is - we can freely synthesize focus transfer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
        // Luckily, this logic is already implemented in requestWindowFocus.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
        if (focusLog.isLoggable(Level.FINE)) focusLog.fine("Requesting window focus");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
        requestWindowFocus(time, timeProvided);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
    public final boolean focusAllowedFor() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
        if (isNativelyNonFocusableWindow()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
        Window target = (Window)this.target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
        if (!target.isVisible() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
            !target.isEnabled() ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
            !target.isFocusable())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        if (isModalBlocked()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
    public void handleFocusEvent(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
        XFocusChangeEvent xfe = xev.get_xfocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        FocusEvent fe;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        focusLog.log(Level.FINE, "{0}", new Object[] {xfe});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
        if (isEventDisabled(xev)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        }
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
   832
        if (xev.get_type() == XConstants.FocusIn)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
            // If this window is non-focusable don't post any java focus event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
            if (focusAllowedFor()) {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
   836
                if (xfe.get_mode() == XConstants.NotifyNormal // Normal notify
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
   837
                    || xfe.get_mode() == XConstants.NotifyWhileGrabbed) // Alt-Tab notify
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
                {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
                    handleWindowFocusIn(xfe.get_serial());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
        {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
   845
            if (xfe.get_mode() == XConstants.NotifyNormal // Normal notify
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
   846
                || xfe.get_mode() == XConstants.NotifyWhileGrabbed) // Alt-Tab notify
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
                // If this window is non-focusable don't post any java focus event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
                if (!isNativelyNonFocusableWindow()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
                    XWindowPeer oppositeXWindow = getNativeFocusedWindowPeer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
                    Object oppositeTarget = (oppositeXWindow!=null)? oppositeXWindow.getTarget() : null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
                    Window oppositeWindow = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
                    if (oppositeTarget instanceof Window) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
                        oppositeWindow = (Window) oppositeTarget;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
                    // Check if opposite window is non-focusable. In that case we don't want to
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
                    // post any event.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
                    if (oppositeXWindow != null && oppositeXWindow.isNativelyNonFocusableWindow()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
                        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
                    if (this == oppositeXWindow) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
                        oppositeWindow = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
                    } else if (oppositeXWindow instanceof XDecoratedPeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
                        if (((XDecoratedPeer) oppositeXWindow).actualFocusedWindow != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
                            oppositeXWindow = ((XDecoratedPeer) oppositeXWindow).actualFocusedWindow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
                            oppositeTarget = oppositeXWindow.getTarget();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
                            if (oppositeTarget instanceof Window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
                                && oppositeXWindow.isVisible()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
                                && oppositeXWindow.isNativelyNonFocusableWindow())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
                            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
                                oppositeWindow = ((Window) oppositeTarget);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                    handleWindowFocusOut(oppositeWindow, xfe.get_serial());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
    void setSaveUnder(boolean state) {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
    public void toFront() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
        if (isOverrideRedirect() && mustControlStackPosition) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
            mustControlStackPosition = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
            removeRootPropertyEventDispatcher();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
        if (isVisible()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
            super.toFront();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
            if (isFocusableWindow() && isAutoRequestFocus() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
                !isModalBlocked() && !isWithdrawn())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
                requestInitialFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
            setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
    public void toBack() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
            if(!isOverrideRedirect()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
                XlibWrapper.XLowerWindow(XToolkit.getDisplay(), getWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
            }else{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
                lowerOverrideRedirect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
        finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
    private void lowerOverrideRedirect() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
        // make new hash of toplevels of all windows from 'windows' hash.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
        // FIXME: do not call them "toplevel" as it is misleading.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
        HashSet toplevels = new HashSet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
        long topl = 0, mytopl = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
        for (XWindowPeer xp : windows) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
            topl = getToplevelWindow( xp.getWindow() );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
            if( xp.equals( this ) ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
                mytopl = topl;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
            if( topl > 0 )
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
                toplevels.add( Long.valueOf( topl ) );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        // find in the root's tree:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
        // (1) my toplevel, (2) lowest java toplevel, (3) desktop
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
        // We must enforce (3), (1), (2) order, upward;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        // note that nautilus on the next restacking will do (1),(3),(2).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
        //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        long laux,     wDesktop = -1, wBottom = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
        int  iMy = -1, iDesktop = -1, iBottom = -1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        int i = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
        XQueryTree xqt = new XQueryTree(XToolkit.getDefaultRootWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
            if( xqt.execute() > 0 ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
                int nchildren = xqt.get_nchildren();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
                long children = xqt.get_children();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
                for(i = 0; i < nchildren; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
                    laux = Native.getWindow(children, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
                    if( laux == mytopl ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
                        iMy = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
                    }else if( isDesktopWindow( laux ) ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
                        // we need topmost desktop of them all.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
                        iDesktop = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
                        wDesktop = laux;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
                    }else if(iBottom < 0 &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
                             toplevels.contains( Long.valueOf(laux) ) &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
                             laux != mytopl) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
                        iBottom = i;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
                        wBottom = laux;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
            if( (iMy < iBottom || iBottom < 0 )&& iDesktop < iMy)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
                return; // no action necessary
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
            long to_restack = Native.allocateLongArray(2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
            Native.putLong(to_restack, 0, wBottom);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
            Native.putLong(to_restack, 1,  mytopl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
            XlibWrapper.XRestackWindows(XToolkit.getDisplay(), to_restack, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
            XlibWrapper.unsafe.freeMemory(to_restack);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
            if( !mustControlStackPosition ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
                mustControlStackPosition = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
                // add root window property listener:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
                // somebody (eg nautilus desktop) may obscure us
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
                addRootPropertyEventDispatcher();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
            xqt.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
        Get XID of closest to root window in a given window hierarchy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
        FIXME: do not call it "toplevel" as it is misleading.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
        On error return 0.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
    */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
    private long getToplevelWindow( long w ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
        long wi = w, ret, root;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
        do {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
            ret = wi;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
            XQueryTree qt = new XQueryTree(wi);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
                if (qt.execute() == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
                    return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
                root = qt.get_root();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
                wi = qt.get_parent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
                qt.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
        } while (wi != root);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
        return ret;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
    private boolean isDesktopWindow( long wi ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
        return XWM.getWM().isDesktopWindow( wi );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
    private void updateAlwaysOnTop() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
        log.log(Level.FINE, "Promoting always-on-top state {0}", Boolean.valueOf(alwaysOnTop));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
        XWM.getWM().setLayer(this,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
                             alwaysOnTop ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
                             XLayerProtocol.LAYER_ALWAYS_ON_TOP :
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
                             XLayerProtocol.LAYER_NORMAL);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
    public void setAlwaysOnTop(boolean alwaysOnTop) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
        this.alwaysOnTop = alwaysOnTop;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
        updateAlwaysOnTop();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
    boolean isLocationByPlatform() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        return locationByPlatform;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
    private void promoteDefaultPosition() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
        this.locationByPlatform = ((Window)target).isLocationByPlatform();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
        if (locationByPlatform) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
            XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
                Rectangle bounds = getBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
                XSizeHints hints = getHints();
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1033
                setSizeHints(hints.get_flags() & ~(XUtilConstants.USPosition | XUtilConstants.PPosition),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
                             bounds.x, bounds.y, bounds.width, bounds.height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
                XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
    public void setVisible(boolean vis) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
        if (!isVisible() && vis) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
            isBeforeFirstMapNotify = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
            winAttr.initialFocus = isAutoRequestFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
            if (!winAttr.initialFocus) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
                /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
                 * It's easier and safer to temporary suppress WM_TAKE_FOCUS
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
                 * protocol itself than to ignore WM_TAKE_FOCUS client message.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
                 * Because we will have to make the difference between
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
                 * the message come after showing and the message come after
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
                 * activation. Also, on Metacity, for some reason, we have _two_
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
                 * WM_TAKE_FOCUS client messages when showing a frame/dialog.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
                 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
                suppressWmTakeFocus(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
        updateFocusability();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
        promoteDefaultPosition();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
        super.setVisible(vis);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
        if (!vis && !isWithdrawn()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
            // ICCCM, 4.1.4. Changing Window State:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
            // "Iconic -> Withdrawn - The client should unmap the window and follow it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
            // with a synthetic UnmapNotify event as described later in this section."
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
            // The same is true for Normal -> Withdrawn
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
            XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
                XUnmapEvent unmap = new XUnmapEvent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
                unmap.set_window(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
                unmap.set_event(XToolkit.getDefaultRootWindow());
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1070
                unmap.set_type((int)XConstants.UnmapNotify);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
                unmap.set_from_configure(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
                XlibWrapper.XSendEvent(XToolkit.getDisplay(), XToolkit.getDefaultRootWindow(),
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1073
                        false, XConstants.SubstructureNotifyMask | XConstants.SubstructureRedirectMask,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
                        unmap.pData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
                unmap.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
            finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
                XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
        // method called somewhere in parent does not generate configure-notify
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
        // event for override-redirect.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
        // Ergo, no reshape and bugs like 5085647 in case setBounds was
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
        // called before setVisible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
        if (isOverrideRedirect() && vis) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
            updateChildrenSizes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
    protected void suppressWmTakeFocus(boolean doSuppress) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
    final boolean isSimpleWindow() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
        return !(target instanceof Frame || target instanceof Dialog);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
    boolean hasWarningWindow() {
129
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 116
diff changeset
  1097
        return ((Window)target).getWarningString() != null;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
    // The height of menu bar window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
    int getMenuBarHeight() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
    // The height of area used to display Applet's warning about securit
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
    int getWarningWindowHeight() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
        if (warningWindow != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
            return warningWindow.getHeight();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
    // Called when shell changes its size and requires children windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
    // to update their sizes appropriately
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
    void updateChildrenSizes() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
        if (warningWindow != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
            warningWindow.reshape(0, getMenuBarHeight(), getSize().width, warningWindow.getHeight());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
    boolean isOverrideRedirect() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
        return (XWM.getWMID() == XWM.OPENLOOK_WM ? true : false) ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
            XTrayIconPeer.isTrayIconStuffWindow((Window)target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
    final boolean isOLWMDecorBug() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
        return XWM.getWMID() == XWM.OPENLOOK_WM &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
            winAttr.nativeDecor == false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
    public void dispose() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
        SunToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
            windows.remove(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
            SunToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
        if (warningWindow != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
            warningWindow.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
        removeRootPropertyEventDispatcher();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
        mustControlStackPosition = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        super.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
         * Fix for 6457980.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
         * When disposing an owned Window we should implicitly
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
         * return focus to its decorated owner because it won't
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
         * receive WM_TAKE_FOCUS.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
        if (isSimpleWindow()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
            if (target == XKeyboardFocusManagerPeer.getCurrentNativeFocusedWindow()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
                Window owner = getDecoratedOwner((Window)target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
                ((XWindowPeer)ComponentAccessor.getPeer(owner)).requestWindowFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
    boolean isResizable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
        return winAttr.isResizable;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
    public void handleVisibilityEvent(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
        super.handleVisibilityEvent(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
        XVisibilityEvent ve = xev.get_xvisibility();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
        winAttr.visibilityState = ve.get_state();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
//         if (ve.get_state() == XlibWrapper.VisibilityUnobscured) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
//             // raiseInputMethodWindow
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
//         }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
    public void handlePropertyNotify(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
        super.handlePropertyNotify(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
        XPropertyEvent ev = xev.get_xproperty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
        if (ev.get_atom() == XWM.XA_WM_STATE.getAtom()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
            // State has changed, invalidate saved value
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
            stateChanged = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
            stateChanged(ev.get_time(), savedState, getWMState());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
        } else if (ev.get_atom() == XWM.XA_KDE_NET_WM_FRAME_STRUT.getAtom()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
                   || ev.get_atom() == XWM.XA_NET_FRAME_EXTENTS.getAtom())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
            getWMSetInsets(XAtom.get(ev.get_atom()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
    void handleRootPropertyNotify(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
        XPropertyEvent ev = xev.get_xproperty();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
        if( mustControlStackPosition &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
            ev.get_atom() == XAtom.get("_NET_CLIENT_LIST_STACKING").getAtom()){
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
            // Restore stack order unhadled/spoiled by WM or some app (nautilus).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
            // As of now, don't use any generic machinery: just
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
            // do toBack() again.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
            if(isOverrideRedirect()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
                toBack();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
    public void handleMapNotifyEvent(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
        // See 6480534.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
        isUnhiding |= isWMStateNetHidden();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
        super.handleMapNotifyEvent(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
        if (!winAttr.initialFocus) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
            suppressWmTakeFocus(false); // restore the protocol.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
             * For some reason, on Metacity, a frame/dialog being shown
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
             * without WM_TAKE_FOCUS protocol doesn't get moved to the front.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
             * So, we do it evidently.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
            XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
                XlibWrapper.XRaiseWindow(XToolkit.getDisplay(), getWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
                XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
        if (shouldFocusOnMapNotify()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
            focusLog.fine("Automatically request focus on window");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
            requestInitialFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
        isUnhiding = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
        isBeforeFirstMapNotify = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
        updateAlwaysOnTop();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
        synchronized (getStateLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
            if (!isMapped) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
                isMapped = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
    public void handleUnmapNotifyEvent(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
        super.handleUnmapNotifyEvent(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
        // On Metacity UnmapNotify comes before PropertyNotify (for _NET_WM_STATE_HIDDEN).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
        // So we also check for the property later in MapNotify. See 6480534.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
        isUnhiding |= isWMStateNetHidden();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
        synchronized (getStateLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
            if (isMapped) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
                isMapped = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
    private boolean shouldFocusOnMapNotify() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
        boolean res = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
        if (isBeforeFirstMapNotify) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
            res = (winAttr.initialFocus ||          // Window.autoRequestFocus
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
                   isFocusedWindowModalBlocker());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
            res = isUnhiding;                       // Unhiding
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
        res = res &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
            isFocusableWindow() &&                  // General focusability
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
            !isModalBlocked();                      // Modality
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
        return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1263
    protected boolean isWMStateNetHidden() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
        XNETProtocol protocol = XWM.getWM().getNETProtocol();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
        return (protocol != null && protocol.isWMStateNetHidden(this));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
    protected void requestInitialFocus() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
        requestXFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
    public void addToplevelStateListener(ToplevelStateListener l){
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
        toplevelStateListeners.add(l);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
    public void removeToplevelStateListener(ToplevelStateListener l){
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
        toplevelStateListeners.remove(l);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
     * Override this methods to get notifications when top-level window state changes. The state is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
     * meant in terms of ICCCM: WithdrawnState, IconicState, NormalState
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
    protected void stateChanged(long time, int oldState, int newState) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
        // Fix for 6401700, 6412803
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
        // If this window is modal blocked, it is put into the transient_for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
        // chain using prevTransientFor and nextTransientFor hints. However,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
        // the real WM_TRANSIENT_FOR hint shouldn't be set for windows in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
        // different WM states (except for owner-window relationship), so
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
        // if the window changes its state, its real WM_TRANSIENT_FOR hint
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
        // should be updated accordingly.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
        updateTransientFor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
        for (ToplevelStateListener topLevelListenerTmp : toplevelStateListeners) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
            topLevelListenerTmp.stateChangedICCCM(oldState, newState);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
     * XmNiconic and Map/UnmapNotify (that XmNiconic relies on) are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
     * unreliable, since mapping changes can happen for a virtual desktop
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
     * switch or MacOS style shading that became quite popular under X as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
     * well.  Yes, it probably should not be this way, as it violates
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
     * ICCCM, but reality is that quite a lot of window managers abuse
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
     * mapping state.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
    int getWMState() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
        if (stateChanged) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
            stateChanged = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
            WindowPropertyGetter getter =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
                new WindowPropertyGetter(window, XWM.XA_WM_STATE, 0, 1, false,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
                                         XWM.XA_WM_STATE);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
                int status = getter.execute();
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1316
                if (status != XConstants.Success || getter.getData() == 0) {
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1317
                    return savedState = XUtilConstants.WithdrawnState;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
                if (getter.getActualType() != XWM.XA_WM_STATE.getAtom() && getter.getActualFormat() != 32) {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1321
                    return savedState = XUtilConstants.WithdrawnState;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
                savedState = (int)Native.getCard32(getter.getData());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
                getter.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
        return savedState;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
    boolean isWithdrawn() {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1332
        return getWMState() == XUtilConstants.WithdrawnState;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
    boolean hasDecorations(int decor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
        if (!winAttr.nativeDecor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
        else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
            int myDecor = winAttr.decorations;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
            boolean hasBits = ((myDecor & decor) == decor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
            if ((myDecor & XWindowAttributesData.AWT_DECOR_ALL) != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
                return !hasBits;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
            else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
                return hasBits;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
    void setReparented(boolean newValue) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
        super.setReparented(newValue);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
            if (isReparented() && delayedModalBlocking) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
                addToTransientFors((XDialogPeer) ComponentAccessor.getPeer(modalBlocker));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
                delayedModalBlocking = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
     * Returns a Vector of all Java top-level windows,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
     * sorted by their current Z-order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
    static Vector<XWindowPeer> collectJavaToplevels() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
        Vector<XWindowPeer> javaToplevels = new Vector<XWindowPeer>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
        Vector<Long> v = new Vector<Long>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
        X11GraphicsEnvironment ge =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
            (X11GraphicsEnvironment)GraphicsEnvironment.getLocalGraphicsEnvironment();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
        GraphicsDevice[] gds = ge.getScreenDevices();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
        if (!ge.runningXinerama() && (gds.length > 1)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
            for (GraphicsDevice gd : gds) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
                int screen = ((X11GraphicsDevice)gd).getScreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
                long rootWindow = XlibWrapper.RootWindow(XToolkit.getDisplay(), screen);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
                v.add(rootWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
            v.add(XToolkit.getDefaultRootWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
        final int windowsCount = windows.size();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
        while ((v.size() > 0) && (javaToplevels.size() < windowsCount)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
            long win = v.remove(0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
            XQueryTree qt = new XQueryTree(win);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
                if (qt.execute() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
                    int nchildren = qt.get_nchildren();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
                    long children = qt.get_children();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
                    // XQueryTree returns window children ordered by z-order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
                    for (int i = 0; i < nchildren; i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
                        long child = Native.getWindow(children, i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
                        XBaseWindow childWindow = XToolkit.windowToXWindow(child);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
                        // filter out Java non-toplevels
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
                        if ((childWindow != null) && !(childWindow instanceof XWindowPeer)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
                            continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
                        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
                            v.add(child);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
                        if (childWindow instanceof XWindowPeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
                            XWindowPeer np = (XWindowPeer)childWindow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
                            javaToplevels.add(np);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
                            // XQueryTree returns windows sorted by their z-order. However,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
                            // if WM has not handled transient for hint for a child window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
                            // it may appear in javaToplevels before its owner. Move such
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
                            // children after their owners.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
                            int k = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
                            XWindowPeer toCheck = javaToplevels.get(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
                            while (toCheck != np) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
                                XWindowPeer toCheckOwnerPeer = toCheck.getOwnerPeer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
                                if (toCheckOwnerPeer == np) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
                                    javaToplevels.remove(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
                                    javaToplevels.add(toCheck);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
                                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
                                    k++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
                                toCheck = javaToplevels.get(k);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
                qt.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
        return javaToplevels;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
    public void setModalBlocked(Dialog d, boolean blocked) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
        setModalBlocked(d, blocked, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
    public void setModalBlocked(Dialog d, boolean blocked,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
                                Vector<XWindowPeer> javaToplevels)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
            // State lock should always be after awtLock
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
            synchronized(getStateLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
                XDialogPeer blockerPeer = (XDialogPeer) ComponentAccessor.getPeer(d);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
                if (blocked) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
                    log.log(Level.FINE, "{0} is blocked by {1}", new Object[] { this, blockerPeer});
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
                    modalBlocker = d;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
                    if (isReparented() || XWM.isNonReparentingWM()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
                        addToTransientFors(blockerPeer, javaToplevels);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
                        delayedModalBlocking = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
                    if (d != modalBlocker) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
                        throw new IllegalStateException("Trying to unblock window blocked by another dialog");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
                    modalBlocker = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
                    if (isReparented() || XWM.isNonReparentingWM()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
                        removeFromTransientFors();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
                        delayedModalBlocking = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
                updateTransientFor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
     * Sets the TRANSIENT_FOR hint to the given top-level window. This
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
     *  method is used when a window is modal blocked/unblocked or
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
     *  changed its state from/to NormalState to/from other states.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
     * If window or transientForWindow are embedded frames, the containing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
     *  top-level windows are used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
     * @param window specifies the top-level window that the hint
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
     *  is to be set to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
     * @param transientForWindow the top-level window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
     * @param updateChain specifies if next/prevTransientFor fields are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
     *  to be updated
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
     * @param allStates if set to <code>true</code> then TRANSIENT_FOR hint
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
     *  is set regardless of the state of window and transientForWindow,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
     *  otherwise it is set only if both are in the same state
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
    static void setToplevelTransientFor(XWindowPeer window, XWindowPeer transientForWindow,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
                                                boolean updateChain, boolean allStates)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
        if ((window == null) || (transientForWindow == null)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
        if (updateChain) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
            window.prevTransientFor = transientForWindow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
            transientForWindow.nextTransientFor = window;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
        if (window.curRealTransientFor == transientForWindow) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
        if (!allStates && (window.getWMState() != transientForWindow.getWMState())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
        if (window.getScreenNumber() != transientForWindow.getScreenNumber()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
        long bpw = window.getWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
        while (!XlibUtil.isToplevelWindow(bpw) && !XlibUtil.isXAWTToplevelWindow(bpw)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
            bpw = XlibUtil.getParentWindow(bpw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
        long tpw = transientForWindow.getWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
        while (!XlibUtil.isToplevelWindow(tpw) && !XlibUtil.isXAWTToplevelWindow(tpw)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
            tpw = XlibUtil.getParentWindow(tpw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
        XlibWrapper.XSetTransientFor(XToolkit.getDisplay(), bpw, tpw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
        window.curRealTransientFor = transientForWindow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
     * This method does nothing if this window is not blocked by any modal dialog.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
     * For modal blocked windows this method looks up for the nearest
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
     *  prevTransiendFor window that is in the same state (Normal/Iconified/Withdrawn)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
     *  as this one and makes this window transient for it. The same operation is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
     *  performed for nextTransientFor window.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
     * Values of prevTransientFor and nextTransientFor fields are not changed.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
    void updateTransientFor() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
        int state = getWMState();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
        XWindowPeer p = prevTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
        while ((p != null) && ((p.getWMState() != state) || (p.getScreenNumber() != getScreenNumber()))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
            p = p.prevTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
        if (p != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
            setToplevelTransientFor(this, p, false, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
            restoreTransientFor(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
        XWindowPeer n = nextTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
        while ((n != null) && ((n.getWMState() != state) || (n.getScreenNumber() != getScreenNumber()))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
            n = n.nextTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
        if (n != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1539
            setToplevelTransientFor(n, this, false, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1540
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1541
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1542
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1543
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1544
     * Removes the TRANSIENT_FOR hint from the given top-level window.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1545
     * If window or transientForWindow are embedded frames, the containing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1546
     *  top-level windows are used.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1547
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1548
     * @param window specifies the top-level window that the hint
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1549
     *  is to be removed from
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1550
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1551
    private static void removeTransientForHint(XWindowPeer window) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1552
        XAtom XA_WM_TRANSIENT_FOR = XAtom.get(XAtom.XA_WM_TRANSIENT_FOR);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1553
        long bpw = window.getWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1554
        while (!XlibUtil.isToplevelWindow(bpw) && !XlibUtil.isXAWTToplevelWindow(bpw)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1555
            bpw = XlibUtil.getParentWindow(bpw);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1556
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1557
        XlibWrapper.XDeleteProperty(XToolkit.getDisplay(), bpw, XA_WM_TRANSIENT_FOR.getAtom());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1558
        window.curRealTransientFor = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1559
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1560
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1561
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1562
     * When a modal dialog is shown, all its blocked windows are lined up into
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1563
     *  a chain in such a way that each window is a transient_for window for
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1564
     *  the next one. That allows us to keep the modal dialog above all its
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1565
     *  blocked windows (even if there are some another modal dialogs between
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1566
     *  them).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1567
     * This method adds this top-level window to the chain of the given modal
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1568
     *  dialog. To keep the current relative z-order, we should use the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1569
     *  XQueryTree to find the place to insert this window to. As each window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1570
     *  can be blocked by only one modal dialog (such checks are performed in
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1571
     *  shared code), both this and blockerPeer are on the top of their chains
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1572
     *  (chains may be empty).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1573
     * If this window is a modal dialog and has its own chain, these chains are
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1574
     *  merged according to the current z-order (XQueryTree is used again).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1575
     *  Below are some simple examples (z-order is from left to right, -- is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1576
     *  modal blocking).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1577
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1578
     * Example 0:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1579
     *     T (current chain of this, no windows are blocked by this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1580
     *  W1---B (current chain of blockerPeer, W2 is blocked by blockerPeer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1581
     *  Result is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1582
     *  W1-T-B (merged chain, all the windows are blocked by blockerPeer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1583
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1584
     * Example 1:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1585
     *  W1-T (current chain of this, W1 is blocked by this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1586
     *       W2-B (current chain of blockerPeer, W2 is blocked by blockerPeer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1587
     *  Result is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1588
     *  W1-T-W2-B (merged chain, all the windows are blocked by blockerPeer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1589
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1590
     * Example 2:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1591
     *  W1----T (current chain of this, W1 is blocked by this)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1592
     *     W2---B (current chain of blockerPeer, W2 is blocked by blockerPeer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1593
     *  Result is:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1594
     *  W1-W2-T-B (merged chain, all the windows are blocked by blockerPeer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1595
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1596
     * This method should be called under the AWT lock.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1597
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1598
     * @see #removeFromTransientFors
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1599
     * @see #setModalBlocked
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1600
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1601
    private void addToTransientFors(XDialogPeer blockerPeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1602
        addToTransientFors(blockerPeer, null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1603
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1604
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1605
    private void addToTransientFors(XDialogPeer blockerPeer, Vector<XWindowPeer> javaToplevels)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1606
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1607
        // blockerPeer chain iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1608
        XWindowPeer blockerChain = blockerPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1609
        while (blockerChain.prevTransientFor != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1610
            blockerChain = blockerChain.prevTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1611
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1612
        // this window chain iterator
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1613
        // each window can be blocked no more than once, so this window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1614
        //   is on top of its chain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1615
        XWindowPeer thisChain = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1616
        while (thisChain.prevTransientFor != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1617
            thisChain = thisChain.prevTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1618
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1619
        // if there are no windows blocked by modalBlocker, simply add this window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1620
        //  and its chain to blocker's chain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1621
        if (blockerChain == blockerPeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1622
            setToplevelTransientFor(blockerPeer, this, true, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1623
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1624
            // Collect all the Java top-levels, if required
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1625
            if (javaToplevels == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1626
                javaToplevels = collectJavaToplevels();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1627
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1628
            // merged chain tail
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1629
            XWindowPeer mergedChain = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1630
            for (XWindowPeer w : javaToplevels) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1631
                XWindowPeer prevMergedChain = mergedChain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1632
                if (w == thisChain) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1633
                    if (thisChain == this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1634
                        if (prevMergedChain != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1635
                            setToplevelTransientFor(this, prevMergedChain, true, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1636
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1637
                        setToplevelTransientFor(blockerChain, this, true, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1638
                        break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1639
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1640
                        mergedChain = thisChain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1641
                        thisChain = thisChain.nextTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1642
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1643
                } else if (w == blockerChain) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1644
                    mergedChain = blockerChain;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1645
                    blockerChain = blockerChain.nextTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1646
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1647
                    continue;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1648
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1649
                if (prevMergedChain == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1650
                    mergedChain.prevTransientFor = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1651
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1652
                    setToplevelTransientFor(mergedChain, prevMergedChain, true, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1653
                    mergedChain.updateTransientFor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1654
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1655
                if (blockerChain == blockerPeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1656
                    setToplevelTransientFor(thisChain, mergedChain, true, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1657
                    setToplevelTransientFor(blockerChain, this, true, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1658
                    break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1659
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1660
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1661
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1662
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1663
        XToolkit.XSync();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1664
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1665
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1666
    static void restoreTransientFor(XWindowPeer window) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1667
        XWindowPeer ownerPeer = window.getOwnerPeer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1668
        if (ownerPeer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1669
            setToplevelTransientFor(window, ownerPeer, false, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1670
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1671
            removeTransientForHint(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1672
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1673
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1674
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1675
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1676
     * When a window is modally unblocked, it should be removed from its blocker
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1677
     *  chain, see {@link #addToTransientFor addToTransientFors} method for the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1678
     *  chain definition.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1679
     * The problem is that we cannot simply restore window's original
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1680
     *  TRANSIENT_FOR hint (if any) and link prevTransientFor and
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1681
     *  nextTransientFor together as the whole chain could be created as a merge
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1682
     *  of two other chains in addToTransientFors. In that case, if this window is
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1683
     *  a modal dialog, it would lost all its own chain, if we simply exclude it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1684
     *  from the chain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1685
     * The correct behaviour of this method should be to split the chain, this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1686
     *  window is currently in, into two chains. First chain is this window own
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1687
     *  chain (i. e. all the windows blocked by this one, directly or indirectly),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1688
     *  if any, and the rest windows from the current chain.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1689
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1690
     * Example:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1691
     *  Original state:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1692
     *   W1-B1 (window W1 is blocked by B1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1693
     *   W2-B2 (window W2 is blocked by B2)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1694
     *  B3 is shown and blocks B1 and B2:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1695
     *   W1-W2-B1-B2-B3 (a single chain after B1.addToTransientFors() and B2.addToTransientFors())
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1696
     *  If we then unblock B1, the state should be:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1697
     *   W1-B1 (window W1 is blocked by B1)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1698
     *   W2-B2-B3 (window W2 is blocked by B2 and B2 is blocked by B3)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1699
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1700
     * This method should be called under the AWT lock.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1701
     *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1702
     * @see #addToTransientFors
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1703
     * @see #setModalBlocked
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1704
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1705
    private void removeFromTransientFors() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1706
        // the head of the chain of this window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1707
        XWindowPeer thisChain = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1708
        // the head of the current chain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1709
        // nextTransientFor is always not null as this window is in the chain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1710
        XWindowPeer otherChain = nextTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1711
        // the set of blockers in this chain: if this dialog blocks some other
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1712
        // modal dialogs, their blocked windows should stay in this dialog's chain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1713
        Set<XWindowPeer> thisChainBlockers = new HashSet<XWindowPeer>();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1714
        thisChainBlockers.add(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1715
        // current chain iterator in the order from next to prev
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1716
        XWindowPeer chainToSplit = prevTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1717
        while (chainToSplit != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1718
            XWindowPeer blocker = (XWindowPeer) ComponentAccessor.getPeer(chainToSplit.modalBlocker);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1719
            if (thisChainBlockers.contains(blocker)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1720
                // add to this dialog's chain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1721
                setToplevelTransientFor(thisChain, chainToSplit, true, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1722
                thisChain = chainToSplit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1723
                thisChainBlockers.add(chainToSplit);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1724
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1725
                // leave in the current chain
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1726
                setToplevelTransientFor(otherChain, chainToSplit, true, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1727
                otherChain = chainToSplit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1728
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1729
            chainToSplit = chainToSplit.prevTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1730
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1731
        restoreTransientFor(thisChain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1732
        thisChain.prevTransientFor = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1733
        restoreTransientFor(otherChain);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1734
        otherChain.prevTransientFor = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1735
        nextTransientFor = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1736
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1737
        XToolkit.XSync();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1738
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1739
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1740
    boolean isModalBlocked() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1741
        return modalBlocker != null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1742
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1743
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1744
    static Window getDecoratedOwner(Window window) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1745
        while ((null != window) && !(window instanceof Frame || window instanceof Dialog)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1746
            window = (Window) ComponentAccessor.getParent_NoClientCode(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1747
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1748
        return window;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1749
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1750
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1751
    public boolean requestWindowFocus(XWindowPeer actualFocusedWindow) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1752
        setActualFocusedWindow(actualFocusedWindow);
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1753
        return requestWindowFocus();
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1754
    }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1755
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1756
    public boolean requestWindowFocus() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1757
        return requestWindowFocus(0, false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1758
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1759
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1760
    public boolean requestWindowFocus(long time, boolean timeProvided) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1761
        focusLog.fine("Request for window focus");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1762
        // If this is Frame or Dialog we can't assure focus request success - but we still can try
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1763
        // If this is Window and its owner Frame is active we can be sure request succedded.
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1764
        Window ownerWindow  = XWindowPeer.getDecoratedOwner((Window)target);
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1765
        Window focusedWindow = XKeyboardFocusManagerPeer.getCurrentNativeFocusedWindow();
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1766
        Window activeWindow = XWindowPeer.getDecoratedOwner(focusedWindow);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1767
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1768
        if (isWMStateNetHidden()) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1769
            focusLog.fine("The window is unmapped, so rejecting the request");
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1770
            return false;
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1771
        }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1772
        if (activeWindow == ownerWindow) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1773
            focusLog.fine("Parent window is active - generating focus for this window");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1774
            handleWindowFocusInSync(-1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1775
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1776
        }
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1777
        focusLog.fine("Parent window is not active");
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1778
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1779
        XDecoratedPeer wpeer = (XDecoratedPeer)ComponentAccessor.getPeer(ownerWindow);
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1780
        if (wpeer != null && wpeer.requestWindowFocus(this, time, timeProvided)) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1781
            focusLog.fine("Parent window accepted focus request - generating focus for this window");
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1782
            return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1783
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1784
        focusLog.fine("Denied - parent window is not active and didn't accept focus request");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1785
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1786
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1787
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1788
    // This method is to be overriden in XDecoratedPeer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1789
    void setActualFocusedWindow(XWindowPeer actualFocusedWindow) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1790
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1791
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1792
    public void xSetVisible(boolean visible) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1793
        if (log.isLoggable(Level.FINE)) log.fine("Setting visible on " + this + " to " + visible);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1794
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1795
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1796
            this.visible = visible;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1797
            if (visible) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1798
                XlibWrapper.XMapRaised(XToolkit.getDisplay(), getWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1799
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1800
                XlibWrapper.XUnmapWindow(XToolkit.getDisplay(), getWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1801
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1802
            XlibWrapper.XFlush(XToolkit.getDisplay());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1803
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1804
        finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1805
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1806
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1807
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1808
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1809
    private int dropTargetCount = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1810
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1811
    public synchronized void addDropTarget() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1812
        if (dropTargetCount == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1813
            long window = getWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1814
            if (window != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1815
                XDropTargetRegistry.getRegistry().registerDropSite(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1816
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1817
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1818
        dropTargetCount++;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1819
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1820
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1821
    public synchronized void removeDropTarget() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1822
        dropTargetCount--;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1823
        if (dropTargetCount == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1824
            long window = getWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1825
            if (window != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1826
                XDropTargetRegistry.getRegistry().unregisterDropSite(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1827
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1828
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1829
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1830
    void addRootPropertyEventDispatcher() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1831
        if( rootPropertyEventDispatcher == null ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1832
            rootPropertyEventDispatcher = new XEventDispatcher() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1833
                public void dispatchEvent(XEvent ev) {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1834
                    if( ev.get_type() == XConstants.PropertyNotify ) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1835
                        handleRootPropertyNotify( ev );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1836
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1837
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1838
            };
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1839
            XlibWrapper.XSelectInput( XToolkit.getDisplay(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1840
                                      XToolkit.getDefaultRootWindow(),
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1841
                                      XConstants.PropertyChangeMask);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1842
            XToolkit.addEventDispatcher(XToolkit.getDefaultRootWindow(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1843
                                                rootPropertyEventDispatcher);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1844
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1845
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1846
    void removeRootPropertyEventDispatcher() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1847
        if( rootPropertyEventDispatcher != null ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1848
            XToolkit.removeEventDispatcher(XToolkit.getDefaultRootWindow(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1849
                                                rootPropertyEventDispatcher);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1850
            rootPropertyEventDispatcher = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1851
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1852
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1853
    public void updateFocusableWindowState() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1854
        cachedFocusableWindow = isFocusableWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1855
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1856
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1857
    XAtom XA_NET_WM_STATE;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1858
    XAtomList net_wm_state;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1859
    public XAtomList getNETWMState() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1860
        if (net_wm_state == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1861
            net_wm_state = XA_NET_WM_STATE.getAtomListPropertyList(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1862
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1863
        return net_wm_state;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1864
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1865
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1866
    public void setNETWMState(XAtomList state) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1867
        net_wm_state = state;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1868
        if (state != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1869
            XA_NET_WM_STATE.setAtomListProperty(this, state);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1870
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1871
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1872
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1873
    public PropMwmHints getMWMHints() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1874
        if (mwm_hints == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1875
            mwm_hints = new PropMwmHints();
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1876
            if (!XWM.XA_MWM_HINTS.getAtomData(getWindow(), mwm_hints.pData, MWMConstants.PROP_MWM_HINTS_ELEMENTS)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1877
                mwm_hints.zero();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1878
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1879
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1880
        return mwm_hints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1881
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1882
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1883
    public void setMWMHints(PropMwmHints hints) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1884
        mwm_hints = hints;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1885
        if (hints != null) {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1886
            XWM.XA_MWM_HINTS.setAtomData(getWindow(), mwm_hints.pData, MWMConstants.PROP_MWM_HINTS_ELEMENTS);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1887
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1888
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1889
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1890
    private Insets wm_set_insets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1891
    public Insets getWMSetInsets(XAtom changedAtom) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1892
        if (isEmbedded()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1893
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1894
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1895
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1896
        if (wm_set_insets != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1897
            return wm_set_insets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1898
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1899
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1900
        if (changedAtom == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1901
            wm_set_insets = XWM.getInsetsFromExtents(getWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1902
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1903
            wm_set_insets = XWM.getInsetsFromProp(getWindow(), changedAtom);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1904
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1905
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1906
        insLog.log(Level.FINER, "FRAME_EXTENTS: {0}", new Object[]{wm_set_insets});
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1907
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1908
        if (wm_set_insets != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1909
            handleWMSetInsets(wm_set_insets);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1910
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1911
        return wm_set_insets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1912
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1913
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1914
    protected void handleWMSetInsets(Insets newInsets) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1915
        wm_set_insets = (Insets)newInsets.clone();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1916
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1917
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1918
    public void resetWMSetInsets() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1919
        wm_set_insets = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1920
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1921
    protected synchronized void updateDropTarget() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1922
        if (dropTargetCount > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1923
            long window = getWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1924
            if (window != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1925
                XDropTargetRegistry.getRegistry().unregisterDropSite(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1926
                XDropTargetRegistry.getRegistry().registerDropSite(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1927
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1928
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1929
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1930
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1931
    public void setGrab(boolean grab) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1932
        this.grab = grab;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1933
        if (grab) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1934
            pressTarget = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1935
            grabInput();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1936
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1937
            ungrabInput();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1938
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1939
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1940
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1941
    public boolean isGrabbed() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1942
        return grab && XAwtState.getGrabWindow() == this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1943
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1944
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1945
    public void handleXCrossingEvent(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1946
        XCrossingEvent xce = xev.get_xcrossing();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1947
        if (grabLog.isLoggable(Level.FINE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1948
            grabLog.log(Level.FINE, "{0}, when grabbed {1}, contains {2}",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1949
                        new Object[] {xce, isGrabbed(), containsGlobal(xce.get_x_root(), xce.get_y_root())});
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1950
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1951
        if (isGrabbed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1952
            // When window is grabbed, all events are dispatched to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1953
            // it.  Retarget them to the corresponding windows (notice
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1954
            // that XBaseWindow.dispatchEvent does the opposite
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1955
            // translation)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1956
            // Note that we need to retarget XCrossingEvents to content window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1957
            // since it generates MOUSE_ENTERED/MOUSE_EXITED for frame and dialog.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1958
            // (fix for 6390326)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1959
            XBaseWindow target = XToolkit.windowToXWindow(xce.get_window());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1960
            grabLog.log(Level.FINER, "  -  Grab event target {0}", new Object[] {target});
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1961
            if (target != null && target != this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1962
                target.dispatchEvent(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1963
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1964
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1965
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1966
        super.handleXCrossingEvent(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1967
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1968
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1969
    public void handleMotionNotify(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1970
        XMotionEvent xme = xev.get_xmotion();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1971
        if (grabLog.isLoggable(Level.FINE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1972
            grabLog.log(Level.FINER, "{0}, when grabbed {1}, contains {2}",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1973
                        new Object[] {xme, isGrabbed(), containsGlobal(xme.get_x_root(), xme.get_y_root())});
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1974
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1975
        if (isGrabbed()) {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  1976
            boolean dragging = (xme.get_state() & (XConstants.Button1Mask | XConstants.Button2Mask | XConstants.Button3Mask)) != 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1977
            // When window is grabbed, all events are dispatched to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1978
            // it.  Retarget them to the corresponding windows (notice
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1979
            // that XBaseWindow.dispatchEvent does the opposite
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1980
            // translation)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1981
            XBaseWindow target = XToolkit.windowToXWindow(xme.get_window());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1982
            if (dragging && pressTarget != target) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1983
                // for some reasons if we grab input MotionNotify for drag is reported with target
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1984
                // to underlying window, not to window on which we have initiated drag
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1985
                // so we need to retarget them.  Here I use simplified logic which retarget all
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1986
                // such events to source of mouse press (or the grabber).  It helps with fix for 6390326.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1987
                // So, I do not want to implement complicated logic for better retargeting.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1988
                target = pressTarget.isVisible() ? pressTarget : this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1989
                xme.set_window(target.getWindow());
430
ff8a4a3ad82f 6508505: JComboBox collapses immediately if it is placed to embedded frame
dcherepanov
parents: 129
diff changeset
  1990
                Point localCoord = target.toLocal(xme.get_x_root(), xme.get_y_root());
ff8a4a3ad82f 6508505: JComboBox collapses immediately if it is placed to embedded frame
dcherepanov
parents: 129
diff changeset
  1991
                xme.set_x(localCoord.x);
ff8a4a3ad82f 6508505: JComboBox collapses immediately if it is placed to embedded frame
dcherepanov
parents: 129
diff changeset
  1992
                xme.set_y(localCoord.y);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1993
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1994
            grabLog.log(Level.FINER, "  -  Grab event target {0}", new Object[] {target});
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1995
            if (target != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1996
                if (target != getContentXWindow() && target != this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1997
                    target.dispatchEvent(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1998
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1999
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2000
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2001
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2002
            // note that we need to pass dragging events to the grabber (6390326)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2003
            // see comment above for more inforamtion.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2004
            if (!containsGlobal(xme.get_x_root(), xme.get_y_root()) && !dragging) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2005
                // Outside of Java
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2006
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2007
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2008
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2009
        super.handleMotionNotify(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2010
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2011
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2012
    // we use it to retarget mouse drag and mouse release during grab.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2013
    private XBaseWindow pressTarget = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2014
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2015
    public void handleButtonPressRelease(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2016
        XButtonEvent xbe = xev.get_xbutton();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2017
        if (grabLog.isLoggable(Level.FINE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2018
            grabLog.log(Level.FINE, "{0}, when grabbed {1}, contains {2} ({3}, {4}, {5}x{6})",
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2019
                        new Object[] {xbe, isGrabbed(), containsGlobal(xbe.get_x_root(), xbe.get_y_root()), getAbsoluteX(), getAbsoluteY(), getWidth(), getHeight()});
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2020
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2021
        if (isGrabbed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2022
            // When window is grabbed, all events are dispatched to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2023
            // it.  Retarget them to the corresponding windows (notice
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2024
            // that XBaseWindow.dispatchEvent does the opposite
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2025
            // translation)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2026
            XBaseWindow target = XToolkit.windowToXWindow(xbe.get_window());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2027
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2028
                grabLog.log(Level.FINER, "  -  Grab event target {0} (press target {1})", new Object[] {target, pressTarget});
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2029
                if (xbe.get_type() == XConstants.ButtonPress
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  2030
                    && xbe.get_button() == XConstants.Button1)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2031
                {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2032
                    // need to keep it to retarget mouse release
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2033
                    pressTarget = target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2034
                } else if (xbe.get_type() == XConstants.ButtonRelease
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 430
diff changeset
  2035
                           && xbe.get_button() == XConstants.Button1
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2036
                           && pressTarget != target)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2037
                {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2038
                    // during grab we do receive mouse release on different component (not on the source
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2039
                    // of mouse press).  So we need to retarget it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2040
                    // see 6390326 for more information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2041
                    target = pressTarget.isVisible() ? pressTarget : this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2042
                    xbe.set_window(target.getWindow());
430
ff8a4a3ad82f 6508505: JComboBox collapses immediately if it is placed to embedded frame
dcherepanov
parents: 129
diff changeset
  2043
                    Point localCoord = target.toLocal(xbe.get_x_root(), xbe.get_y_root());
ff8a4a3ad82f 6508505: JComboBox collapses immediately if it is placed to embedded frame
dcherepanov
parents: 129
diff changeset
  2044
                    xbe.set_x(localCoord.x);
ff8a4a3ad82f 6508505: JComboBox collapses immediately if it is placed to embedded frame
dcherepanov
parents: 129
diff changeset
  2045
                    xbe.set_y(localCoord.y);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2046
                    pressTarget = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2047
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2048
                if (target != null && target != getContentXWindow() && target != this) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2049
                    target.dispatchEvent(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2050
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2051
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2052
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2053
                if (target != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2054
                    // Target is either us or our content window -
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2055
                    // check that event is inside.  'Us' in case of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2056
                    // shell will mean that this will also filter out press on title
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2057
                    if ((target == this || target == getContentXWindow()) && !containsGlobal(xbe.get_x_root(), xbe.get_y_root())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2058
                        // Outside this toplevel hierarchy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2059
                        // According to the specification of UngrabEvent, post it
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2060
                        // when press occurs outside of the window and not on its owned windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2061
                        grabLog.log(Level.FINE, "Generating UngrabEvent on {0} because not inside of shell", this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2062
                        postEventToEventQueue(new sun.awt.UngrabEvent(getEventSource()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2063
                        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2064
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2065
                    // First, get the toplevel
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2066
                    XWindowPeer toplevel = target.getToplevelXWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2067
                    if (toplevel != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2068
                        Window w = (Window)toplevel.target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2069
                        while (w != null && toplevel != this && !(toplevel instanceof XDialogPeer)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2070
                            w = (Window) ComponentAccessor.getParent_NoClientCode(w);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2071
                            if (w != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2072
                                toplevel = (XWindowPeer) ComponentAccessor.getPeer(w);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2073
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2074
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2075
                        if (w == null || (w != this.target && w instanceof Dialog)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2076
                            // toplevel == null - outside of
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2077
                            // hierarchy, toplevel is Dialog - should
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2078
                            // send ungrab (but shouldn't for Window)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2079
                            grabLog.log(Level.FINE, "Generating UngrabEvent on {0} because hierarchy ended", this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2080
                            postEventToEventQueue(new sun.awt.UngrabEvent(getEventSource()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2081
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2082
                    } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2083
                        // toplevel is null - outside of hierarchy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2084
                        grabLog.log(Level.FINE, "Generating UngrabEvent on {0} because toplevel is null", this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2085
                        postEventToEventQueue(new sun.awt.UngrabEvent(getEventSource()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2086
                        return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2087
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2088
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2089
                    // target doesn't map to XAWT window - outside of hierarchy
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2090
                    grabLog.log(Level.FINE, "Generating UngrabEvent on because target is null {0}", this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2091
                    postEventToEventQueue(new sun.awt.UngrabEvent(getEventSource()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2092
                    return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2093
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2094
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2095
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2096
        super.handleButtonPressRelease(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2097
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  2098
}