jdk/src/solaris/classes/sun/awt/X11/XContentWindow.java
author yan
Mon, 06 Oct 2008 16:45:00 +0400
changeset 1966 12a51fb0db0d
parent 439 3488710b02f8
child 3938 ef327bd847c0
child 4191 ca8d3ef845c8
permissions -rw-r--r--
5100701: Toolkit.getLockingKeyState() does not work on XToolkit, but works on Motif Summary: Does not work on Motif but works on XToolkit now; implemented using XQueryPointer. Reviewed-by: anthony
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
115
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
     2
 * Copyright 2003-2008 Sun Microsystems, Inc.  All Rights Reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package sun.awt.X11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.awt.Component;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.Rectangle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.Insets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.event.ComponentEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.util.logging.Level;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.util.logging.Logger;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import sun.awt.ComponentAccessor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * This class implements window which serves as content window for decorated frames.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 * Its purpose to provide correct events dispatching for the complex
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * constructs such as decorated frames.
115
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    42
 *
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    43
 * It should always be located at (- left inset, - top inset) in the associated
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    44
 * decorated window.  So coordinates in it would be the same as java coordinates.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 */
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 115
diff changeset
    46
public final class XContentWindow extends XWindow {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
    private static Logger insLog = Logger.getLogger("sun.awt.X11.insets.XContentWindow");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
115
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    49
    static XContentWindow createContent(XDecoratedPeer parentFrame) {
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    50
        final WindowDimensions dims = parentFrame.getDimensions();
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    51
        Rectangle rec = dims.getBounds();
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    52
        // Fix for  - set the location of the content window to the (-left inset, -top inset)
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    53
        Insets ins = dims.getInsets();
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    54
        if (ins != null) {
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    55
            rec.x = -ins.left;
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    56
            rec.y = -ins.top;
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    57
        } else {
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    58
            rec.x = 0;
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    59
            rec.y = 0;
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    60
        }
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    61
        final XContentWindow cw = new XContentWindow(parentFrame, rec);
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    62
        cw.xSetVisible(true);
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    63
        return cw;
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    64
    }
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    65
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    66
    private final XDecoratedPeer parentFrame;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    // A list of expose events that come when the parentFrame is iconified
115
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    69
    private final java.util.List<SavedExposeEvent> iconifiedExposeEvents =
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    70
            new java.util.ArrayList<SavedExposeEvent>();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
115
e270c597a3ad 6645885: small refactoring for XContentWindow
son
parents: 2
diff changeset
    72
    private XContentWindow(XDecoratedPeer parentFrame, Rectangle bounds) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
        super((Component)parentFrame.getTarget(), parentFrame.getShell(), bounds);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
        this.parentFrame = parentFrame;
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);
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 115
diff changeset
    79
        params.putIfNull(BIT_GRAVITY, Integer.valueOf(XConstants.NorthWestGravity));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        Long eventMask = (Long)params.get(EVENT_MASK);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        if (eventMask != null) {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 115
diff changeset
    82
            eventMask = eventMask & ~(XConstants.StructureNotifyMask);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
            params.put(EVENT_MASK, eventMask);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    protected String getWMName() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        return "Content window";
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    protected boolean isEventDisabled(XEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        switch (e.get_type()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
          // Override parentFrame to receive MouseEnter/Exit
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 115
diff changeset
    93
          case XConstants.EnterNotify:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 115
diff changeset
    94
          case XConstants.LeaveNotify:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
              return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
          // We handle ConfigureNotify specifically in XDecoratedPeer
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 115
diff changeset
    97
          case XConstants.ConfigureNotify:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
              return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
          // We don't want SHOWN/HIDDEN on content window since it will duplicate XDecoratedPeer
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 115
diff changeset
   100
          case XConstants.MapNotify:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 115
diff changeset
   101
          case XConstants.UnmapNotify:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
              return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
          default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
              return super.isEventDisabled(e) || parentFrame.isEventDisabled(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
    // Coordinates are that of the shell
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    void setContentBounds(WindowDimensions dims) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
            // Bounds of content window are of the same size as bounds of Java window and with
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
            // location as -(insets)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            Rectangle newBounds = dims.getBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            Insets in = dims.getInsets();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
            if (in != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
                newBounds.setLocation(-in.left, -in.top);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            if (insLog.isLoggable(Level.FINE)) insLog.log(Level.FINE, "Setting content bounds {0}, old bounds {1}",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
                                                          new Object[] {newBounds, getBounds()});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
            // Fix for 5023533:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
            // Change in the size of the content window means, well, change of the size
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
            // Change in the location of the content window means change in insets
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
            boolean needHandleResize = !(newBounds.equals(getBounds()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
            reshape(newBounds);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
            if (needHandleResize) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
                insLog.fine("Sending RESIZED");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
                handleResize(newBounds);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        validateSurface();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    // NOTE: This method may be called by privileged threads.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
    //       DO NOT INVOKE CLIENT CODE ON THIS THREAD!
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    public void handleResize(Rectangle bounds) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        ComponentAccessor.setWidth((Component)target, bounds.width);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        ComponentAccessor.setHeight((Component)target, bounds.height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        postEvent(new ComponentEvent(target, ComponentEvent.COMPONENT_RESIZED));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    public void handleExposeEvent(Component target, int x, int y, int w, int h) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        // TODO: ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        // get rid of 'istanceof' by subclassing:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        // XContentWindow -> XFrameContentWindow
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        // Expose event(s) that result from deiconification
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        // come before a deicinofication notification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
        // We reorder these events by saving all expose events
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        // that come when the frame is iconified. Then we
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        // actually handle saved expose events on deiconification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        if (parentFrame instanceof XFramePeer &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
                (((XFramePeer)parentFrame).getState() & java.awt.Frame.ICONIFIED) != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            // Save expose events if the frame is iconified
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
            // in order to handle them on deiconification.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
            iconifiedExposeEvents.add(new SavedExposeEvent(target, x, y, w, h));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
            // Normal case: [it is not a frame or] the frame is not iconified.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
            super.handleExposeEvent(target, x, y, w, h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
    void purgeIconifiedExposeEvents() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
        for (SavedExposeEvent evt : iconifiedExposeEvents) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
            super.handleExposeEvent(evt.target, evt.x, evt.y, evt.w, evt.h);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        iconifiedExposeEvents.clear();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    private static class SavedExposeEvent {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        Component target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        int x, y, w, h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        SavedExposeEvent(Component target, int x, int y, int w, int h) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            this.target = target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            this.x = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
            this.y = y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            this.w = w;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
            this.h = h;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    public String toString() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        return getClass().getName() + "[" + getBounds() + "]";
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
}