src/java.desktop/unix/classes/sun/awt/X11/XDecoratedPeer.java
author serb
Tue, 07 May 2019 18:18:54 -0700
changeset 54871 c2e4aef5edf2
parent 47216 71c04702a3d5
permissions -rw-r--r--
8223237: Replace use of string.equals("") with isEmpty() in java.desktop Reviewed-by: prr
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
54871
c2e4aef5edf2 8223237: Replace use of string.equals("") with isEmpty() in java.desktop
serb
parents: 47216
diff changeset
     2
 * Copyright (c) 2002, 2019, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4371
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4371
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4371
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4371
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4371
diff changeset
    23
 * questions.
2
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.InvocationEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.event.WindowEvent;
39862
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
    32
import java.util.Collections;
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
    33
import java.util.HashMap;
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
    34
import java.util.Map;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
18241
3e009b5be123 8003559: Update display of applet windows
leonidr
parents: 13648
diff changeset
    36
import sun.awt.IconInfo;
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
    37
import sun.util.logging.PlatformLogger;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
4371
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4366
diff changeset
    39
import sun.awt.AWTAccessor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import sun.awt.SunToolkit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
129
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 118
diff changeset
    42
abstract class XDecoratedPeer extends XWindowPeer {
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
    43
    private static final PlatformLogger log = PlatformLogger.getLogger("sun.awt.X11.XDecoratedPeer");
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
    44
    private static final PlatformLogger insLog = PlatformLogger.getLogger("sun.awt.X11.insets.XDecoratedPeer");
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
    45
    private static final PlatformLogger focusLog = PlatformLogger.getLogger("sun.awt.X11.focus.XDecoratedPeer");
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
    46
    private static final PlatformLogger iconLog = PlatformLogger.getLogger("sun.awt.X11.icon.XDecoratedPeer");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    // Set to true when we get the first ConfigureNotify after being
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
    // reparented - indicates that WM has adopted the top-level.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    boolean configure_seen;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    boolean insets_corrected;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    XIconWindow iconWindow;
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
    54
    volatile WindowDimensions dimensions;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    XContentWindow content;
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
    56
    volatile Insets currentInsets;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
    XFocusProxyWindow focusProxy;
39862
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
    58
    static final Map<Class<?>,Insets> lastKnownInsets =
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
    59
                                   Collections.synchronizedMap(new HashMap<>());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    XDecoratedPeer(Window target) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        super(target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    XDecoratedPeer(XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        super(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
    public long getShell() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        return window;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
    public long getContentWindow() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        return (content == null) ? window : content.getWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    void preInit(XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        super.preInit(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        winAttr.initialFocus = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
    81
        currentInsets = new Insets(0,0,0,0);
39862
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
    82
        if (XWM.getWMID() == XWM.UNITY_COMPIZ_WM) {
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
    83
            currentInsets = lastKnownInsets.get(getClass());
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
    84
        }
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
    85
        applyGuessedInsets();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        Rectangle bounds = (Rectangle)params.get(BOUNDS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        dimensions = new WindowDimensions(bounds, getRealInsets(), false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
        params.put(BOUNDS, dimensions.getClientRect());
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
    90
        if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
    91
            insLog.fine("Initial dimensions {0}", dimensions);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
    92
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
        // Deny default processing of these events on the shell - proxy will take care of
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        // them instead
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
        Long eventMask = (Long)params.get(EVENT_MASK);
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 420
diff changeset
    97
        params.add(EVENT_MASK, Long.valueOf(eventMask.longValue() & ~(XConstants.FocusChangeMask | XConstants.KeyPressMask | XConstants.KeyReleaseMask)));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    void postInit(XCreateWindowParams params) {
6822
0a6eba317c96 6895647: Frame may jump to an unpredicted location upon entering the non-opaque mode on X11
anthony
parents: 6637
diff changeset
   101
        // The size hints must be set BEFORE mapping the window (see 6895647)
0a6eba317c96 6895647: Frame may jump to an unpredicted location upon entering the non-opaque mode on X11
anthony
parents: 6637
diff changeset
   102
        updateSizeHints(dimensions);
0a6eba317c96 6895647: Frame may jump to an unpredicted location upon entering the non-opaque mode on X11
anthony
parents: 6637
diff changeset
   103
0a6eba317c96 6895647: Frame may jump to an unpredicted location upon entering the non-opaque mode on X11
anthony
parents: 6637
diff changeset
   104
        // The super method maps the window if it's visible on the shared level
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        super.postInit(params);
6822
0a6eba317c96 6895647: Frame may jump to an unpredicted location upon entering the non-opaque mode on X11
anthony
parents: 6637
diff changeset
   106
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        // The lines that follow need to be in a postInit, so they
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
        // happen after the X window is created.
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   109
        setResizable(winAttr.initialResizability);
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   110
        XWM.requestWMExtents(getWindow());
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   111
115
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
   112
        content = XContentWindow.createContent(this);
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   113
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
        if (warningWindow != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            warningWindow.toFront();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        focusProxy = createFocusProxy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
18241
3e009b5be123 8003559: Update display of applet windows
leonidr
parents: 13648
diff changeset
   120
    void setIconHints(java.util.List<IconInfo> icons) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        if (!XWM.getWM().setNetWMIcon(this, icons)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            if (icons.size() > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
                if (iconWindow == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
                    iconWindow = new XIconWindow(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
                iconWindow.setIconImages(icons);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    public void updateMinimumSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        super.updateMinimumSize();
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   133
        XToolkit.awtLock();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   134
        try {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   135
            updateMinSizeHints();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   136
        } finally {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   137
            XToolkit.awtUnlock();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   138
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    private void updateMinSizeHints() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        if (isResizable()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            Dimension minimumSize = getTargetMinimumSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
            if (minimumSize != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
                Insets insets = getRealInsets();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                int minWidth = minimumSize.width - insets.left - insets.right;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
                int minHeight = minimumSize.height - insets.top - insets.bottom;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
                if (minWidth < 0) minWidth = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
                if (minHeight < 0) minHeight = 0;
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 420
diff changeset
   150
                setSizeHints(XUtilConstants.PMinSize | (isLocationByPlatform()?0:(XUtilConstants.PPosition | XUtilConstants.USPosition)),
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
                             getX(), getY(), minWidth, minHeight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
                if (isVisible()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
                    Rectangle bounds = getShellBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
                    int nw = (bounds.width < minWidth) ? minWidth : bounds.width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
                    int nh = (bounds.height < minHeight) ? minHeight : bounds.height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
                    if (nw != bounds.width || nh != bounds.height) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                        setShellSize(new Rectangle(0, 0, nw, nh));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
                boolean isMinSizeSet = isMinSizeSet();
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 420
diff changeset
   162
                XWM.removeSizeHints(this, XUtilConstants.PMinSize);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
                /* Some WMs need remap to redecorate the window */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
                if (isMinSizeSet && isShowing() && XWM.needRemap(this)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
                    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
                     * Do the re/mapping at the Xlib level.  Since we essentially
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
                     * work around a WM bug we don't want this hack to be exposed
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
                     * to Intrinsics (i.e. don't mess with grabs, callbacks etc).
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
                     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
                    xSetVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
                    XToolkit.XSync();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
                    xSetVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
    XFocusProxyWindow createFocusProxy() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
        return new XFocusProxyWindow(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
    protected XAtomList getWMProtocols() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        XAtomList protocols = super.getWMProtocols();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
        protocols.add(wm_delete_window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        protocols.add(wm_take_focus);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
        return protocols;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
    public Graphics getGraphics() {
4371
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4366
diff changeset
   190
        AWTAccessor.ComponentAccessor compAccessor = AWTAccessor.getComponentAccessor();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
        return getGraphics(content.surfaceData,
4371
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4366
diff changeset
   192
                           compAccessor.getForeground(target),
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4366
diff changeset
   193
                           compAccessor.getBackground(target),
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4366
diff changeset
   194
                           compAccessor.getFont(target));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
    public void setTitle(String title) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   198
        if (log.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   199
            log.fine("Title is " + title);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   200
        }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   201
        XToolkit.awtLock();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   202
        try {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   203
            winAttr.title = title;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   204
            updateWMName();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   205
        } finally {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   206
            XToolkit.awtUnlock();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   207
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
    protected String getWMName() {
54871
c2e4aef5edf2 8223237: Replace use of string.equals("") with isEmpty() in java.desktop
serb
parents: 47216
diff changeset
   211
        if (winAttr.title == null || winAttr.title.trim().isEmpty()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
            return " ";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
            return winAttr.title;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
    void updateWMName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        try {
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   221
            super.updateWMName();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   222
            String name = getWMName();
54871
c2e4aef5edf2 8223237: Replace use of string.equals("") with isEmpty() in java.desktop
serb
parents: 47216
diff changeset
   223
            if (name == null || name.trim().isEmpty()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
                name = "Java";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
            XAtom iconNameAtom = XAtom.get(XAtom.XA_WM_ICON_NAME);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
            iconNameAtom.setProperty(getWindow(), name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
            XAtom netIconNameAtom = XAtom.get("_NET_WM_ICON_NAME");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
            netIconNameAtom.setPropertyUTF8(getWindow(), name);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
    // NOTE: This method may be called by privileged threads.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    //       DO NOT INVOKE CLIENT CODE ON THIS THREAD!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    public void handleIconify() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
        postEvent(new WindowEvent((Window)target, WindowEvent.WINDOW_ICONIFIED));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
    // NOTE: This method may be called by privileged threads.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    //       DO NOT INVOKE CLIENT CODE ON THIS THREAD!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    public void handleDeiconify() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
        postEvent(new WindowEvent((Window)target, WindowEvent.WINDOW_DEICONIFIED));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
    public void handleFocusEvent(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        super.handleFocusEvent(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
        XFocusChangeEvent xfe = xev.get_xfocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
        // If we somehow received focus events forward it instead to proxy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
        // FIXME: Shouldn't we instead check for inferrior?
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   253
        if (focusLog.isLoggable(PlatformLogger.Level.FINER)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   254
            focusLog.finer("Received focus event on shell: " + xfe);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   255
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
//         focusProxy.xRequestFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
/***************************************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
 *                             I N S E T S   C O D E
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
 **************************************************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
    protected boolean isInitialReshape() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   267
    private static Insets difference(Insets i1, Insets i2) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
        return new Insets(i1.top-i2.top, i1.left - i2.left, i1.bottom-i2.bottom, i1.right-i2.right);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   271
    private static boolean isNull(Insets i) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        return (i == null) || ((i.left | i.top | i.right | i.bottom) == 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
    }
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   274
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   275
    private static Insets copy(Insets i) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        return new Insets(i.top, i.left, i.bottom, i.right);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
40161
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   279
    private Insets copyAndScaleDown(Insets i) {
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   280
        return new Insets(scaleDown(i.top), scaleDown(i.left),
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   281
                          scaleDown(i.bottom), scaleDown(i.right));
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   282
    }
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   283
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   284
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   285
    // insets which we get from WM (e.g from _NET_FRAME_EXTENTS)
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   286
    private Insets wm_set_insets;
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   287
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   288
    private Insets getWMSetInsets(XAtom changedAtom) {
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   289
        if (isEmbedded()) {
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   290
            return null;
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   291
        }
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   292
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   293
        if (wm_set_insets != null) {
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   294
            return wm_set_insets;
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   295
        }
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   296
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   297
        if (changedAtom == null) {
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   298
            wm_set_insets = XWM.getInsetsFromExtents(getWindow());
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   299
        } else {
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   300
            wm_set_insets = XWM.getInsetsFromProp(getWindow(), changedAtom);
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   301
        }
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   302
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   303
        if (insLog.isLoggable(PlatformLogger.Level.FINER)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   304
            insLog.finer("FRAME_EXTENTS: {0}", wm_set_insets);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   305
        }
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   306
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   307
        if (wm_set_insets != null) {
40161
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   308
            wm_set_insets = copyAndScaleDown(wm_set_insets);
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   309
        }
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   310
        return wm_set_insets;
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   311
    }
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   312
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   313
    private void resetWMSetInsets() {
41802
89f634379c0c 8166897: Some font overlap in the Optionpane dialog.
ssadetsky
parents: 41409
diff changeset
   314
        if (XWM.getWMID() != XWM.UNITY_COMPIZ_WM) {
89f634379c0c 8166897: Some font overlap in the Optionpane dialog.
ssadetsky
parents: 41409
diff changeset
   315
            currentInsets = new Insets(0, 0, 0, 0);
89f634379c0c 8166897: Some font overlap in the Optionpane dialog.
ssadetsky
parents: 41409
diff changeset
   316
            wm_set_insets = null;
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   317
        } else {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   318
            insets_corrected = false;
41802
89f634379c0c 8166897: Some font overlap in the Optionpane dialog.
ssadetsky
parents: 41409
diff changeset
   319
        }
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   320
    }
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   321
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   322
    public void handlePropertyNotify(XEvent xev) {
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   323
        super.handlePropertyNotify(xev);
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   324
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   325
        XPropertyEvent ev = xev.get_xproperty();
41409
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   326
        if( !insets_corrected && isReparented() &&
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   327
                                         XWM.getWMID() == XWM.UNITY_COMPIZ_WM) {
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   328
            int state = XWM.getWM().getState(this);
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   329
            if ((state & Frame.MAXIMIZED_BOTH) ==  Frame.MAXIMIZED_BOTH) {
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   330
                // Stop ignoring ConfigureNotify because no extents will be sent
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   331
                // by WM for initially maximized decorated window.
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   332
                // Re-request window bounds to ensure actual dimensions and
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   333
                // notify the target with the initial size.
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   334
                insets_corrected = true;
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   335
                XlibWrapper.XConfigureWindow(XToolkit.getDisplay(),
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   336
                                                             getWindow(), 0, 0);
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   337
            }
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   338
        }
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   339
        if (ev.get_atom() == XWM.XA_KDE_NET_WM_FRAME_STRUT.getAtom()
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   340
            || ev.get_atom() == XWM.XA_NET_FRAME_EXTENTS.getAtom())
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   341
        {
39862
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   342
            if (XWM.getWMID() != XWM.UNITY_COMPIZ_WM) {
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   343
                getWMSetInsets(XAtom.get(ev.get_atom()));
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   344
            } else {
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   345
                if (!isReparented()) {
39862
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   346
                    return;
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   347
                }
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   348
                wm_set_insets = null;
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   349
                Insets in = getWMSetInsets(XAtom.get(ev.get_atom()));
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   350
                if (isNull(in)) {
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   351
                    return;
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   352
                }
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   353
                if (!isEmbedded() && !isTargetUndecorated()) {
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   354
                    lastKnownInsets.put(getClass(), in);
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   355
                }
41409
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   356
                if (!in.equals(dimensions.getInsets())) {
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   357
                    if (insets_corrected || isMaximized()) {
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   358
                        currentInsets = in;
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   359
                        insets_corrected = true;
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   360
                        // insets were changed by WM. To handle this situation
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   361
                        // re-request window bounds because the current
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   362
                        // dimensions may be not actual as well.
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   363
                        XlibWrapper.XConfigureWindow(XToolkit.getDisplay(),
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   364
                                                             getWindow(), 0, 0);
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   365
                    } else {
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   366
                        // recalculate dimensions when window is just created
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   367
                        // and the initially guessed insets were wrong
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   368
                        handleCorrectInsets(in);
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   369
                    }
41802
89f634379c0c 8166897: Some font overlap in the Optionpane dialog.
ssadetsky
parents: 41409
diff changeset
   370
                } else if (!insets_corrected || !dimensions.isClientSizeSet()) {
41409
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   371
                    insets_corrected = true;
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   372
                    // initial insets were guessed correctly. Re-request
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   373
                    // frame bounds because they may be changed by WM if the
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   374
                    // initial window position overlapped desktop's toolbars.
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   375
                    // This should initiate the final ConfigureNotify upon which
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   376
                    // the target will be notified with the final size.
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   377
                    XlibWrapper.XConfigureWindow(XToolkit.getDisplay(),
04b42eb73ee6 8165619: Frame is not repainted if created in state=MAXIMIZED_BOTH on Unity
ssadetsky
parents: 41393
diff changeset
   378
                                                             getWindow(), 0, 0);
39862
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   379
                }
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   380
            }
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   381
        }
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   382
    }
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   383
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
    long reparent_serial = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
    public void handleReparentNotifyEvent(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
        XReparentEvent  xe = xev.get_xreparent();
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   388
        if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   389
            insLog.fine(xe.toString());
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   390
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
        reparent_serial = xe.get_serial();
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   392
        long root = XlibWrapper.RootWindow(XToolkit.getDisplay(), getScreenNumber());
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   393
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   394
        if (isEmbedded()) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   395
            setReparented(true);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   396
            insets_corrected = true;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   397
            return;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   398
        }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   399
        if (getDecorations() == XWindowAttributesData.AWT_DECOR_NONE) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   400
            setReparented(true);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   401
            insets_corrected = true;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   402
            reshape(dimensions, SET_SIZE, false);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   403
        } else if (xe.get_parent() == root) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   404
            configure_seen = false;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   405
            insets_corrected = false;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   407
            /*
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   408
             * We can be repareted to root for two reasons:
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   409
             *   . setVisible(false)
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   410
             *   . WM exited
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   411
             */
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   412
            if (isVisible()) { /* WM exited */
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   413
                /* Work around 4775545 */
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   414
                XWM.getWM().unshadeKludge(this);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   415
                insLog.fine("- WM exited");
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   416
            } else {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   417
                insLog.fine(" - reparent due to hide");
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   418
            }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   419
        } else { /* reparented to WM frame, figure out our insets */
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   420
            setReparented(true);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   421
            insets_corrected = false;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   422
            if (XWM.getWMID() == XWM.UNITY_COMPIZ_WM) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   426
            // Check if we have insets provided by the WM
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   427
            Insets correctWM = getWMSetInsets(null);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   428
            if (correctWM != null) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   429
                if (insLog.isLoggable(PlatformLogger.Level.FINER)) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   430
                    insLog.finer("wm-provided insets {0}", correctWM);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
                }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   432
                // If these insets are equal to our current insets - no actions are necessary
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   433
                Insets dimInsets = dimensions.getInsets();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   434
                if (correctWM.equals(dimInsets)) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   435
                    insLog.finer("Insets are the same as estimated - no additional reshapes necessary");
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   436
                    no_reparent_artifacts = true;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   437
                    insets_corrected = true;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   438
                    applyGuessedInsets();
41393
ebc8d972cd3f 8161910: [PIT] regression: HW/LW mixing seems broken on Unity
ssadetsky
parents: 40161
diff changeset
   439
                    return;
ebc8d972cd3f 8161910: [PIT] regression: HW/LW mixing seems broken on Unity
ssadetsky
parents: 40161
diff changeset
   440
                }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   441
            } else {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   442
                correctWM = XWM.getWM().getInsets(this, xe.get_window(), xe.get_parent());
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   443
                if (correctWM != null) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   444
                    correctWM = copyAndScaleDown(correctWM);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   445
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   447
                if (insLog.isLoggable(PlatformLogger.Level.FINER)) {
40161
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   448
                    if (correctWM != null) {
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   449
                        insLog.finer("correctWM {0}", correctWM);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   450
                    } else {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   451
                        insLog.finer("correctWM insets are not available, waiting for configureNotify");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
                }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   454
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   456
            if (correctWM != null) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   457
                handleCorrectInsets(correctWM);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   462
    private void handleCorrectInsets(Insets correctWM) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   463
        /*
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   464
         * Ok, now see if we need adjust window size because
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   465
         * initial insets were wrong (most likely they were).
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   466
         */
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   467
        Insets correction = difference(correctWM, currentInsets);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   468
        if (insLog.isLoggable(PlatformLogger.Level.FINEST)) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   469
            insLog.finest("Corrention {0}", correction);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   470
        }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   471
        if (!isNull(correction)) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   472
            currentInsets = copy(correctWM);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   473
            applyGuessedInsets();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   475
            //Fix for 6318109: PIT: Min Size is not honored properly when a
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   476
            //smaller size is specified in setSize(), XToolkit
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   477
            //update minimum size hints
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   478
            updateMinSizeHints();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   479
        }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   480
        if (insLog.isLoggable(PlatformLogger.Level.FINER)) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   481
            insLog.finer("Dimensions before reparent: " + dimensions);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   482
        }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   483
        WindowDimensions newDimensions = new WindowDimensions(dimensions);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   484
        newDimensions.setInsets(getRealInsets());
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   485
        dimensions = newDimensions;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   486
        insets_corrected = true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   488
        if (isMaximized()) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   489
            return;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   490
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   492
        /*
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   493
         * If this window has been sized by a pack() we need
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   494
         * to keep the interior geometry intact.  Since pack()
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   495
         * computed width and height with wrong insets, we
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   496
         * must adjust the target dimensions appropriately.
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   497
         */
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   498
        if ((getHints().get_flags() & (XUtilConstants.USPosition | XUtilConstants.PPosition)) != 0) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   499
            reshape(dimensions, SET_BOUNDS, false);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   500
        } else {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   501
            reshape(dimensions, SET_SIZE, false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   505
    void handleMoved(WindowDimensions dims) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
        Point loc = dims.getLocation();
22584
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 21786
diff changeset
   507
        AWTAccessor.getComponentAccessor().setLocation(target, loc.x, loc.y);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
        postEvent(new ComponentEvent(target, ComponentEvent.COMPONENT_MOVED));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   512
    private Insets guessInsets() {
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   513
        if (isEmbedded() || isTargetUndecorated()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            return new Insets(0, 0, 0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
        } else {
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   516
            if (!isNull(currentInsets)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                /* insets were set on wdata by System Properties */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                return copy(currentInsets);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                Insets res = getWMSetInsets(null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                if (res == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                    res = XWM.getWM().guessInsets(this);
40161
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   523
                    if (res != null) {
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   524
                        res = copyAndScaleDown(res);
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   525
                    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
                return res;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    private void applyGuessedInsets() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
        Insets guessed = guessInsets();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
        currentInsets = copy(guessed);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   537
    private Insets getRealInsets() {
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   538
        if (isNull(currentInsets)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
            applyGuessedInsets();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
        }
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   541
        return currentInsets;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
    public Insets getInsets() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
        Insets in = copy(getRealInsets());
2472
b7aba00cabb6 6693253: Security Warning appearance requires enhancements
anthony
parents: 2466
diff changeset
   546
        in.top += getMenuBarHeight();
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   547
        if (insLog.isLoggable(PlatformLogger.Level.FINEST)) {
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
   548
            insLog.finest("Get insets returns {0}", in);
449
7820f232278d 6690036: some code cleanup for insets-related code
son
parents: 442
diff changeset
   549
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        return in;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    boolean gravityBug() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
        return XWM.configureGravityBuggy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    // The height of area used to display current active input method
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
    int getInputMethodHeight() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    void updateSizeHints(WindowDimensions dims) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        Rectangle rec = dims.getClientRect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        checkShellRect(rec);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        updateSizeHints(rec.x, rec.y, rec.width, rec.height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    void updateSizeHints() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        updateSizeHints(dimensions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
    // Coordinates are that of the target
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
    // Called only on Toolkit thread
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   574
    private void reshape(WindowDimensions newDimensions, int op,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
                        boolean userReshape)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   577
        if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
            insLog.fine("Reshaping " + this + " to " + newDimensions + " op " + op + " user reshape " + userReshape);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        }
129
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 118
diff changeset
   580
        if (userReshape) {
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 118
diff changeset
   581
            // We handle only userReshape == true cases. It means that
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 118
diff changeset
   582
            // if the window manager or any other part of the windowing
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 118
diff changeset
   583
            // system sets inappropriate size for this window, we can
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 118
diff changeset
   584
            // do nothing but accept it.
2643
ea218b1a2000 6821948: Consider removing the constraints for bounds of untrusted top-level windows
anthony
parents: 2472
diff changeset
   585
            Rectangle newBounds = newDimensions.getBounds();
1977
3a9980ccb120 6721088: Bad window size calculation after using pack()
art
parents: 449
diff changeset
   586
            Insets insets = newDimensions.getInsets();
3a9980ccb120 6721088: Bad window size calculation after using pack()
art
parents: 449
diff changeset
   587
            // Inherit isClientSizeSet from newDimensions
3a9980ccb120 6721088: Bad window size calculation after using pack()
art
parents: 449
diff changeset
   588
            if (newDimensions.isClientSizeSet()) {
3a9980ccb120 6721088: Bad window size calculation after using pack()
art
parents: 449
diff changeset
   589
                newBounds = new Rectangle(newBounds.x, newBounds.y,
3a9980ccb120 6721088: Bad window size calculation after using pack()
art
parents: 449
diff changeset
   590
                                          newBounds.width - insets.left - insets.right,
3a9980ccb120 6721088: Bad window size calculation after using pack()
art
parents: 449
diff changeset
   591
                                          newBounds.height - insets.top - insets.bottom);
3a9980ccb120 6721088: Bad window size calculation after using pack()
art
parents: 449
diff changeset
   592
            }
3a9980ccb120 6721088: Bad window size calculation after using pack()
art
parents: 449
diff changeset
   593
            newDimensions = new WindowDimensions(newBounds, insets, newDimensions.isClientSizeSet());
129
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 118
diff changeset
   594
        }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   595
        if (!isReparented() || !isVisible()) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   596
            if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   597
                insLog.fine("- not reparented({0}) or not visible({1}), default reshape",
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   598
                       Boolean.valueOf(isReparented()), Boolean.valueOf(visible));
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   599
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   601
            // Fix for 6323293.
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   602
            // This actually is needed to preserve compatibility with previous releases -
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   603
            // some of licensees are expecting componentMoved event on invisible one while
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   604
            // its location changes.
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   605
            Point oldLocation = getLocation();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   607
            Point newLocation = new Point(AWTAccessor.getComponentAccessor().getX(target),
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   608
                                          AWTAccessor.getComponentAccessor().getY(target));
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   609
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   610
            if (!newLocation.equals(oldLocation)) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   611
                handleMoved(newDimensions);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   614
            dimensions = new WindowDimensions(newDimensions);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   615
            updateSizeHints(dimensions);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   616
            Rectangle client = dimensions.getClientRect();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   617
            checkShellRect(client);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   618
            setShellBounds(client);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   619
            if (content != null &&
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   620
                !content.getSize().equals(newDimensions.getSize()))
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   621
            {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   622
                reconfigureContentWindow(newDimensions);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
            }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   624
            return;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   625
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   627
        updateChildrenSizes();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   628
        applyGuessedInsets();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   630
        Rectangle shellRect = newDimensions.getClientRect();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   631
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   632
        if (gravityBug()) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   633
            Insets in = newDimensions.getInsets();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   634
            shellRect.translate(in.left, in.top);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   635
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   637
        if ((op & NO_EMBEDDED_CHECK) == 0 && isEmbedded()) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   638
            shellRect.setLocation(0, 0);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   639
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   641
        checkShellRectSize(shellRect);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   642
        if (!isEmbedded()) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   643
            checkShellRectPos(shellRect);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   644
        }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   645
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   646
        op = op & ~NO_EMBEDDED_CHECK;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   647
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   648
        if (op == SET_LOCATION) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   649
            setShellPosition(shellRect);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   650
        } else if (isResizable()) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   651
            if (op == SET_BOUNDS) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   652
                setShellBounds(shellRect);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
            } else {
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   654
                setShellSize(shellRect);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
            }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   656
        } else {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   657
            XWM.setShellNotResizable(this, newDimensions, shellRect, true);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   658
            if (op == SET_BOUNDS) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   659
                setShellPosition(shellRect);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   660
            }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   661
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   663
        reconfigureContentWindow(newDimensions);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
     * @param x, y, width, heith - dimensions of the window with insets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
    private void reshape(int x, int y, int width, int height, int operation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
                         boolean userReshape)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
        WindowDimensions dims = new WindowDimensions(dimensions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
        switch (operation & (~NO_EMBEDDED_CHECK)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
          case SET_LOCATION:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
              // Set location always sets bounds location. However, until the window is mapped we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
              // should use client coordinates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
              dims.setLocation(x, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
          case SET_SIZE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
              // Set size sets bounds size. However, until the window is mapped we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
              // should use client coordinates
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
              dims.setSize(width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
          case SET_CLIENT_SIZE: {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
              // Sets client rect size. Width and height contain insets.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
              Insets in = currentInsets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
              width -= in.left+in.right;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
              height -= in.top+in.bottom;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
              dims.setClientSize(width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
          }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
          case SET_BOUNDS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
          default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
              dims.setLocation(x, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
              dims.setSize(width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
        }
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   698
        if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
   699
            insLog.fine("For the operation {0} new dimensions are {1}",
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
   700
                        operationToString(operation), dims);
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   701
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
        reshape(dims, operation, userReshape);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
129
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 118
diff changeset
   706
    // This method gets overriden in XFramePeer & XDialogPeer.
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 118
diff changeset
   707
    abstract boolean isTargetUndecorated();
f995b9c9c5fa 6589527: Window and Frame instances can hide their "Applet Warning"
anthony
parents: 118
diff changeset
   708
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
     * @see java.awt.peer.ComponentPeer#setBounds
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    public void setBounds(int x, int y, int width, int height, int op) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
        // TODO: Rewrite with WindowDimensions
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   714
        XToolkit.awtLock();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   715
        try {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   716
            reshape(x, y, width, height, op, true);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   717
        } finally {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   718
            XToolkit.awtUnlock();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   719
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
        validateSurface();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
90ce3da70b43 Initial load
duke
parents:
diff changeset
   723
    // Coordinates are that of the shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
    void reconfigureContentWindow(WindowDimensions dims) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
        if (content == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
            insLog.fine("WARNING: Content window is null");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
        content.setContentBounds(dims);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
    boolean no_reparent_artifacts = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
    public void handleConfigureNotifyEvent(XEvent xev) {
39862
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   734
        if (XWM.getWMID() == XWM.UNITY_COMPIZ_WM && !insets_corrected) {
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   735
            return;
a3fc74a6c5a3 8036915: setLocationRelativeTo stopped working in Ubuntu 13.10 (Unity)
ssadetsky
parents: 39856
diff changeset
   736
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        assert (SunToolkit.isAWTLockHeldByCurrentThread());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        XConfigureEvent xe = xev.get_xconfigure();
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   739
        if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   740
            insLog.fine("Configure notify {0}", xe);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   741
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
        // XXX: should really only consider synthetic events, but
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
        if (isReparented()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
            configure_seen = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        if (!isMaximized()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            && (xe.get_serial() == reparent_serial || xe.get_window() != getShell())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
            && !no_reparent_artifacts)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
            insLog.fine("- reparent artifact, skipping");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
        no_reparent_artifacts = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
         * When there is a WM we receive some CN before being visible and after.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
         * We should skip all CN which are before being visible, because we assume
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
         * the gravity is in action while it is not yet.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
         *
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
         * When there is no WM we receive CN only _before_ being visible.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
         * We should process these CNs.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
        if (!isVisible() && XWM.getWMID() != XWM.NO_WM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
            insLog.fine(" - not visible, skipping");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
         * Some window managers configure before we are reparented and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
         * the send event flag is set! ugh... (Enlighetenment for one,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
         * possibly MWM as well).  If we haven't been reparented yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
         * this is just the WM shuffling us into position.  Ignore
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
         * it!!!! or we wind up in a bogus location.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
         */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
        int runningWM = XWM.getWMID();
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   778
        if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
   779
            insLog.fine("reparented={0}, visible={1}, WM={2}, decorations={3}",
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
   780
                        isReparented(), isVisible(), runningWM, getDecorations());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
        if (!isReparented() && isVisible() && runningWM != XWM.NO_WM
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
                &&  !XWM.isNonReparentingWM()
115
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
   784
                && getDecorations() != XWindowAttributesData.AWT_DECOR_NONE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
            insLog.fine("- visible but not reparented, skipping");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        //Last chance to correct insets
115
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
   789
        if (!insets_corrected && getDecorations() != XWindowAttributesData.AWT_DECOR_NONE) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
            long parent = XlibUtil.getParentWindow(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
            Insets correctWM = (parent != -1) ? XWM.getWM().getInsets(this, window, parent) : null;
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   792
            if (insLog.isLoggable(PlatformLogger.Level.FINER)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
                if (correctWM != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
                    insLog.finer("Configure notify - insets : " + correctWM);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
                    insLog.finer("Configure notify - insets are still not available");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
            if (correctWM != null) {
40161
d1621c3f403c 8161273: [hidpi] The frame insets size is wrong on Linux HiDPI because it is not scaled.
ssadetsky
parents: 39862
diff changeset
   800
                handleCorrectInsets(copyAndScaleDown(correctWM));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
                //Only one attempt to correct insets is made (to lower risk)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
                //if insets are still not available we simply set the flag
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
                insets_corrected = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
        updateChildrenSizes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
21786
2f3ad6aa2ac5 8027628: JWindow jumps to (0, 0) after mouse clicked
bagiras
parents: 21591
diff changeset
   810
        Point newLocation = getNewLocation(xe, currentInsets.left, currentInsets.top);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
        WindowDimensions newDimensions =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
                new WindowDimensions(newLocation,
34395
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 33248
diff changeset
   813
                                     new Dimension(scaleDown(xe.get_width()),
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 33248
diff changeset
   814
                                                   scaleDown(xe.get_height())),
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 33248
diff changeset
   815
                                     copy(currentInsets), true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   817
        if (insLog.isLoggable(PlatformLogger.Level.FINER)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   818
            insLog.finer("Insets are {0}, new dimensions {1}",
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
   819
                     currentInsets, newDimensions);
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   820
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        checkIfOnNewScreen(newDimensions.getBounds());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        Point oldLocation = getLocation();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        dimensions = newDimensions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
        if (!newLocation.equals(oldLocation)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
            handleMoved(newDimensions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
        reconfigureContentWindow(newDimensions);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
        updateChildrenSizes();
2472
b7aba00cabb6 6693253: Security Warning appearance requires enhancements
anthony
parents: 2466
diff changeset
   831
b7aba00cabb6 6693253: Security Warning appearance requires enhancements
anthony
parents: 2466
diff changeset
   832
        repositionSecurityWarning();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
    private void checkShellRectSize(Rectangle shellRect) {
6637
64ecd501905b 6987945: XDecoratedPeer shouldn't allow to resize a frame to zero size
omajid
parents: 5506
diff changeset
   836
        shellRect.width = Math.max(MIN_SIZE, shellRect.width);
64ecd501905b 6987945: XDecoratedPeer shouldn't allow to resize a frame to zero size
omajid
parents: 5506
diff changeset
   837
        shellRect.height = Math.max(MIN_SIZE, shellRect.height);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
    private void checkShellRectPos(Rectangle shellRect) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
        int wm = XWM.getWMID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
        if (wm == XWM.MOTIF_WM || wm == XWM.CDE_WM) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
            if (shellRect.x == 0 && shellRect.y == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
                shellRect.x = shellRect.y = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
    private void checkShellRect(Rectangle shellRect) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
        checkShellRectSize(shellRect);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
        checkShellRectPos(shellRect);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   854
    private void setShellBounds(Rectangle rec) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   855
        if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   856
            insLog.fine("Setting shell bounds on " + this + " to " + rec);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   857
        }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   858
        updateSizeHints(rec.x, rec.y, rec.width, rec.height);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   859
        XlibWrapper.XMoveResizeWindow(XToolkit.getDisplay(), getShell(),
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   860
                                      scaleUp(rec.x), scaleUp(rec.y),
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   861
                                      scaleUp(rec.width), scaleUp(rec.height));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
    }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   863
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   864
    private void setShellSize(Rectangle rec) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   865
        if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   866
            insLog.fine("Setting shell size on " + this + " to " + rec);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   867
        }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   868
        updateSizeHints(rec.x, rec.y, rec.width, rec.height);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   869
        XlibWrapper.XResizeWindow(XToolkit.getDisplay(), getShell(),
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   870
                                  scaleUp(rec.width), scaleUp(rec.height));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
    }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   872
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   873
    private void setShellPosition(Rectangle rec) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
   874
        if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   875
            insLog.fine("Setting shell position on " + this + " to " + rec);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
   876
        }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   877
        updateSizeHints(rec.x, rec.y, rec.width, rec.height);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   878
        XlibWrapper.XMoveWindow(XToolkit.getDisplay(), getShell(),
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   879
                                scaleUp(rec.x), scaleUp(rec.y));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
    public void setResizable(boolean resizable) {
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   883
        XToolkit.awtLock();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   884
        try {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   885
            int fs = winAttr.functions;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   886
            if (!isResizable() && resizable) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   887
                resetWMSetInsets();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   888
                if (!isEmbedded()) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   889
                    setReparented(false);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   890
                }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   891
                winAttr.isResizable = resizable;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   892
                if ((fs & MWMConstants.MWM_FUNC_ALL) != 0) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   893
                    fs &= ~(MWMConstants.MWM_FUNC_RESIZE
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   894
                          | MWMConstants.MWM_FUNC_MAXIMIZE);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   895
                } else {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   896
                    fs |= (MWMConstants.MWM_FUNC_RESIZE
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   897
                         | MWMConstants.MWM_FUNC_MAXIMIZE);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   898
                }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   899
                winAttr.functions = fs;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   900
                XWM.setShellResizable(this);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   901
            } else if (isResizable() && !resizable) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   902
                resetWMSetInsets();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   903
                if (!isEmbedded()) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   904
                    setReparented(false);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   905
                }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   906
                winAttr.isResizable = resizable;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   907
                if ((fs & MWMConstants.MWM_FUNC_ALL) != 0) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   908
                    fs |= (MWMConstants.MWM_FUNC_RESIZE
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   909
                         | MWMConstants.MWM_FUNC_MAXIMIZE);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   910
                } else {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   911
                    fs &= ~(MWMConstants.MWM_FUNC_RESIZE
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   912
                          | MWMConstants.MWM_FUNC_MAXIMIZE);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   913
                }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   914
                winAttr.functions = fs;
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   915
                XWM.setShellNotResizable(this, dimensions,
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   916
                        XWM.getWMID() == XWM.UNITY_COMPIZ_WM && configure_seen ?
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   917
                        dimensions.getScreenBounds() :
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   918
                        dimensions.getBounds(), false);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
            }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   920
        } finally {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   921
            XToolkit.awtUnlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
    Rectangle getShellBounds() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
        return dimensions.getClientRect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
    public Rectangle getBounds() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
        return dimensions.getBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
    public Dimension getSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
        return dimensions.getSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
    public int getX() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        return dimensions.getLocation().x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
    public int getY() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
        return dimensions.getLocation().y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
    public Point getLocation() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
        return dimensions.getLocation();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
    public int getAbsoluteX() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
        // NOTE: returning this peer's location which is shell location
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
        return dimensions.getScreenBounds().x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
    public int getAbsoluteY() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
        // NOTE: returning this peer's location which is shell location
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        return dimensions.getScreenBounds().y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
    public int getWidth() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        return getSize().width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
    public int getHeight() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
        return getSize().height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
32865
f9cb6e427f9e 8136783: Run blessed-modifier-order script on java.desktop
prr
parents: 30469
diff changeset
   967
    public final WindowDimensions getDimensions() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
        return dimensions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
    public Point getLocationOnScreen() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
            if (configure_seen) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
                return toGlobal(0,0);
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
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
        }
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   980
        Point location = target.getLocation();
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   981
        if (insLog.isLoggable(PlatformLogger.Level.FINE)) {
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   982
            insLog.fine("getLocationOnScreen {0} not reparented: {1} ",
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   983
                        this, location);
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   984
        }
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
   985
        return location;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
/***************************************************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
 *              END            OF             I N S E T S   C O D E
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
 **************************************************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
    protected boolean isEventDisabled(XEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
        switch (e.get_type()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
            // Do not generate MOVED/RESIZED events since we generate them by ourselves
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 420
diff changeset
   996
          case XConstants.ConfigureNotify:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
              return true;
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 420
diff changeset
   998
          case XConstants.EnterNotify:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 420
diff changeset
   999
          case XConstants.LeaveNotify:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
              // Disable crossing event on outer borders of Frame so
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
              // we receive only one set of cross notifications(first set is from content window)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
              return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
          default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
              return super.isEventDisabled(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
    int getDecorations() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
        return winAttr.decorations;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
    int getFunctions() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
        return winAttr.functions;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
    public void setVisible(boolean vis) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
  1017
        if (log.isLoggable(PlatformLogger.Level.FINER)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1018
            log.finer("Setting {0} to visible {1}", this, Boolean.valueOf(vis));
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1019
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
        if (vis && !isVisible()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
            XWM.setShellDecor(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
            super.setVisible(vis);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
            if (winAttr.isResizable) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
                //Fix for 4320050: Minimum size for java.awt.Frame is not being enforced.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
                //We need to update frame's minimum size, not to reset it
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 420
diff changeset
  1026
                XWM.removeSizeHints(this, XUtilConstants.PMaxSize);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
                updateMinimumSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
            super.setVisible(vis);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
    protected void suppressWmTakeFocus(boolean doSuppress) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        XAtomList protocols = getWMProtocols();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
        if (doSuppress) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
            protocols.remove(wm_take_focus);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
            protocols.add(wm_take_focus);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
        wm_protocols.setAtomListProperty(this, protocols);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
    public void dispose() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
        if (content != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
            content.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
        focusProxy.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
        if (iconWindow != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
            iconWindow.destroy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
        super.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
    public void handleClientMessage(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
        super.handleClientMessage(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
        XClientMessageEvent cl = xev.get_xclient();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
        if ((wm_protocols != null) && (cl.get_message_type() == wm_protocols.getAtom())) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
            if (cl.get_data(0) == wm_delete_window.getAtom()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
                handleQuit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
            } else if (cl.get_data(0) == wm_take_focus.getAtom()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
                handleWmTakeFocus(cl);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
    private void handleWmTakeFocus(XClientMessageEvent cl) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
  1070
        if (focusLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1071
            focusLog.fine("WM_TAKE_FOCUS on {0}", this);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1072
        }
39856
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1073
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1074
        if (XWM.getWMID() == XWM.UNITY_COMPIZ_WM) {
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1075
            // JDK-8159460
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1076
            Window focusedWindow = XKeyboardFocusManagerPeer.getInstance()
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1077
                    .getCurrentFocusedWindow();
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1078
            Window activeWindow = XWindowPeer.getDecoratedOwner(focusedWindow);
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1079
            if (activeWindow != target) {
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1080
                requestWindowFocus(cl.get_data(1), true);
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1081
            } else {
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1082
                WindowEvent we = new WindowEvent(focusedWindow,
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1083
                        WindowEvent.WINDOW_GAINED_FOCUS);
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1084
                sendEvent(we);
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1085
            }
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1086
        } else {
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1087
            requestWindowFocus(cl.get_data(1), true);
96d7761b869a 8159460: On Ubuntu Unity, problem with java/awt/Window/FindOwner/FindOwnerTest
ssadetsky
parents: 34395
diff changeset
  1088
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
     * Requests focus to this decorated top-level by requesting X input focus
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
     * to the shell window.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
    protected void requestXFocus(long time, boolean timeProvided) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
        // We have proxied focus mechanism - instead of shell the focus is held
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
        // by "proxy" - invisible mapped window. When we want to set X input focus to
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
        // toplevel set it on proxy instead.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
        if (focusProxy == null) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
  1100
            if (focusLog.isLoggable(PlatformLogger.Level.WARNING)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1101
                focusLog.warning("Focus proxy is null for " + this);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1102
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
        } else {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
  1104
            if (focusLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1105
                focusLog.fine("Requesting focus to proxy: " + focusProxy);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1106
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
            if (timeProvided) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
                focusProxy.xRequestFocus(time);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
                focusProxy.xRequestFocus();
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
    XFocusProxyWindow getFocusProxy() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
        return focusProxy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
43081
66a49615076d 8167652: Making a frame/dialog resizeble/unresizeble shifts its position on Unity.
ssadetsky
parents: 41802
diff changeset
  1119
    private void handleQuit() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
        postEvent(new WindowEvent((Window)target, WindowEvent.WINDOW_CLOSING));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
    final void dumpMe() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
        System.err.println(">>> Peer: " + x + ", " + y + ", " + width + ", " + height);
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 void dumpTarget() {
4371
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4366
diff changeset
  1128
        AWTAccessor.ComponentAccessor compAccessor = AWTAccessor.getComponentAccessor();
22584
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 21786
diff changeset
  1129
        int getWidth = compAccessor.getWidth(target);
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 21786
diff changeset
  1130
        int getHeight = compAccessor.getHeight(target);
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 21786
diff changeset
  1131
        int getTargetX = compAccessor.getX(target);
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 21786
diff changeset
  1132
        int getTargetY = compAccessor.getY(target);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
        System.err.println(">>> Target: " + getTargetX + ", " + getTargetY + ", " + getWidth + ", " + getHeight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
    final void dumpShell() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
        dumpWindow("Shell", getShell());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
    final void dumpContent() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
        dumpWindow("Content", getContentWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
    final void dumpParent() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
        long parent = XlibUtil.getParentWindow(getShell());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
        if (parent != 0)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
            dumpWindow("Parent", parent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
            System.err.println(">>> NO PARENT");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
    final void dumpWindow(String id, long window) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
        XWindowAttributes pattr = new XWindowAttributes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
            XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
                int status =
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
                    XlibWrapper.XGetWindowAttributes(XToolkit.getDisplay(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
                                                     window, pattr.pData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
            finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
                XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
            System.err.println(">>>> " + id + ": " + pattr.get_x()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
                               + ", " + pattr.get_y() + ", " + pattr.get_width()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
                               + ", " + pattr.get_height());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
            pattr.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
    final void dumpAll() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
        dumpTarget();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
        dumpMe();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
        dumpParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
        dumpShell();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
        dumpContent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
    boolean isMaximized() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
4366
4446f3b8a9b4 6402325: Swing toolbars vs native toolbars on Windows
anthony
parents: 4214
diff changeset
  1186
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
    boolean isOverrideRedirect() {
4366
4446f3b8a9b4 6402325: Swing toolbars vs native toolbars on Windows
anthony
parents: 4214
diff changeset
  1188
        return Window.Type.POPUP.equals(getWindowType());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
    public boolean requestWindowFocus(long time, boolean timeProvided) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
        focusLog.fine("Request for decorated window focus");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
        // 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
  1194
        // If this is Window and its owner Frame is active we can be sure request succedded.
13648
90effcfc064f 7124375: [macosx] Focus isn't transfered as expected between components
leonidr
parents: 12829
diff changeset
  1195
        Window focusedWindow = XKeyboardFocusManagerPeer.getInstance().getCurrentFocusedWindow();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
        Window activeWindow = XWindowPeer.getDecoratedOwner(focusedWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
  1198
        if (focusLog.isLoggable(PlatformLogger.Level.FINER)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1199
            focusLog.finer("Current window is: active={0}, focused={1}",
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
  1200
                       Boolean.valueOf(target == activeWindow),
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2802
diff changeset
  1201
                       Boolean.valueOf(target == focusedWindow));
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1202
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
        XWindowPeer toFocus = this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
        while (toFocus.nextTransientFor != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
            toFocus = toFocus.nextTransientFor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
        }
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1208
        if (toFocus == null || !toFocus.focusAllowedFor()) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
            // This might change when WM will have property to determine focus policy.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
            // Right now, because policy is unknown we can't be sure we succedded
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
        }
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1213
        if (this == toFocus) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1214
            if (isWMStateNetHidden()) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1215
                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
  1216
                return false;
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1217
            }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1218
            if (target == activeWindow && target != focusedWindow) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1219
                // Happens when an owned window is currently focused
21591
35320b590d9b 8026491: Typos in string literals
malenkov
parents: 18275
diff changeset
  1220
                focusLog.fine("Focus is on child window - transferring it back to the owner");
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1221
                handleWindowFocusInSync(-1);
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1222
                return true;
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1223
            }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1224
            Window realNativeFocusedWindow = XWindowPeer.getNativeFocusedWindow();
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
  1225
            if (focusLog.isLoggable(PlatformLogger.Level.FINEST)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1226
                focusLog.finest("Real native focused window: " + realNativeFocusedWindow +
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1227
                            "\nKFM's focused window: " + focusedWindow);
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1228
            }
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1229
16842
78641211dbbc 7147075: JTextField doesn't get focus or loses focus forever
ant
parents: 16839
diff changeset
  1230
            // A workaround for Metacity. See 6522725, 6613426, 7147075.
78641211dbbc 7147075: JTextField doesn't get focus or loses focus forever
ant
parents: 16839
diff changeset
  1231
            if (target == realNativeFocusedWindow && XWM.getWMID() == XWM.METACITY_WM) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
  1232
                if (focusLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1233
                    focusLog.fine("The window is already natively focused.");
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1234
                }
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1235
                return true;
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1236
            }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1237
        }
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16842
diff changeset
  1238
        if (focusLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1239
            focusLog.fine("Requesting focus to " + (this == toFocus ? "this window" : toFocus));
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13648
diff changeset
  1240
        }
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1241
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1242
        if (timeProvided) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1243
            toFocus.requestXFocus(time);
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1244
        } else {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1245
            toFocus.requestXFocus();
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1246
        }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
  1247
        return (this == toFocus);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
    XWindowPeer actualFocusedWindow = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
    void setActualFocusedWindow(XWindowPeer actualFocusedWindow) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
        synchronized(getStateLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
            this.actualFocusedWindow = actualFocusedWindow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
    boolean requestWindowFocus(XWindowPeer actualFocusedWindow,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
                               long time, boolean timeProvided)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
        setActualFocusedWindow(actualFocusedWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
        return requestWindowFocus(time, timeProvided);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
    public void handleWindowFocusIn(long serial) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
        if (null == actualFocusedWindow) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
            super.handleWindowFocusIn(serial);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
            /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
             * Fix for 6314575.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
             * If this is a result of clicking on one of the Frame's component
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
             * then 'actualFocusedWindow' shouldn't be focused. A decision of focusing
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
             * it or not should be made after the appropriate Java mouse event (if any)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
             * is handled by the component where 'actualFocusedWindow' value may be reset.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
             *
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
             * The fix is based on the empiric fact consisting in that the component
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
             * receives native mouse event nearly at the same time the Frame receives
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
             * WM_TAKE_FOCUS (when FocusIn is generated via XSetInputFocus call) but
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
             * definetely before the Frame gets FocusIn event (when this method is called).
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
             */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
            postEvent(new InvocationEvent(target, new Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
                public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
                    XWindowPeer fw = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
                    synchronized (getStateLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
                        fw = actualFocusedWindow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
                        actualFocusedWindow = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
                        if (null == fw || !fw.isVisible() || !fw.isFocusableWindow()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
                            fw = XDecoratedPeer.this;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
                    fw.handleWindowFocusIn_Dispatch();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
            }));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
    public void handleWindowFocusOut(Window oppositeWindow, long serial) {
13648
90effcfc064f 7124375: [macosx] Focus isn't transfered as expected between components
leonidr
parents: 12829
diff changeset
  1296
        Window actualFocusedWindow = XKeyboardFocusManagerPeer.getInstance().getCurrentFocusedWindow();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
        // If the actual focused window is not this decorated window then retain it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
        if (actualFocusedWindow != null && actualFocusedWindow != target) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
            Window owner = XWindowPeer.getDecoratedOwner(actualFocusedWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
            if (owner != null && owner == target) {
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 25859
diff changeset
  1303
                setActualFocusedWindow(AWTAccessor.getComponentAccessor().getPeer(actualFocusedWindow));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
        super.handleWindowFocusOut(oppositeWindow, serial);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
}