jdk/src/solaris/classes/sun/awt/X11/XComponentPeer.java
author ant
Wed, 09 Apr 2008 09:37:07 +0400
changeset 442 687798d7d7b6
parent 439 3488710b02f8
child 887 0aab8d3fa11a
permissions -rw-r--r--
6522725: Component in a minimized Frame has focus and receives key events Summary: XAWT: a window natively focused may request focus in it only synthetically Reviewed-by: son
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
116
9c43d9eb1029 6645856: static field XWindowPeer.defaultFont hides XWindow.defaultFont
son
parents: 2
diff changeset
     2
 * Copyright 2002-2008 Sun Microsystems, Inc.  All Rights Reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package sun.awt.X11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.awt.AWTEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.AWTException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.BufferCapabilities;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.Color;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.Component;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.awt.Container;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.awt.Cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import java.awt.Dimension;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
import java.awt.Font;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.awt.FontMetrics;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
import java.awt.Graphics;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
import java.awt.Image;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.awt.Insets;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.awt.KeyboardFocusManager;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
import java.awt.Rectangle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
import java.awt.SystemColor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
import java.awt.Toolkit;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
import java.awt.Window;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
import java.awt.dnd.DropTarget;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
import java.awt.dnd.peer.DropTargetPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
import java.awt.event.FocusEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
import java.awt.event.InputEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
import java.awt.event.InputMethodEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
import java.awt.event.KeyEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
import java.awt.event.MouseEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
import java.awt.event.MouseWheelEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
import java.awt.event.PaintEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
import java.awt.event.WindowEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
import java.awt.event.InvocationEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
import java.awt.image.ImageObserver;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
import java.awt.image.ImageProducer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
import java.awt.image.VolatileImage;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
import java.awt.peer.ComponentPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
import java.awt.peer.ContainerPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
import java.awt.peer.LightweightPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
import java.lang.reflect.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
import java.util.Collection;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
import java.util.HashSet;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
import java.util.Set;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
import java.util.Vector;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
import java.util.logging.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
import sun.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
import sun.awt.event.IgnorePaintEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
import sun.awt.image.SunVolatileImage;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
import sun.awt.image.ToolkitImage;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
import sun.java2d.pipe.Region;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
    75
public class XComponentPeer extends XWindow implements ComponentPeer, DropTargetPeer {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    /* FIX ME: these constants copied from java.awt.KeyboardFocusManager */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
    static final int SNFH_FAILURE = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
    static final int SNFH_SUCCESS_HANDLED = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
    static final int SNFH_SUCCESS_PROCEED = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
    private static final Logger log = Logger.getLogger("sun.awt.X11.XComponentPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    private static final Logger buffersLog = Logger.getLogger("sun.awt.X11.XComponentPeer.multibuffer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
    private static final Logger focusLog = Logger.getLogger("sun.awt.X11.focus.XComponentPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    private static final Logger fontLog = Logger.getLogger("sun.awt.X11.font.XComponentPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    private static final Logger enableLog = Logger.getLogger("sun.awt.X11.enable.XComponentPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    private static final Logger shapeLog = Logger.getLogger("sun.awt.X11.shape.XComponentPeer");
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
    boolean paintPending = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    boolean isLayouting = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    boolean enabled;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
    // Actually used only by XDecoratedPeer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    protected int boundsOperation;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
    Color foreground;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    Color background;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    // Colors calculated as on Motif using MotifColorUtilties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    // If you use these, call updateMotifColors() in the peer's Constructor and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    // setBackground().  Examples are XCheckboxPeer and XButtonPeer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    Color darkShadow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    Color lightShadow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    Color selectColor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    Font font;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    private long backBuffer = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    private VolatileImage xBackBuffer = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    static Color[] systemColors;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
    XComponentPeer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    XComponentPeer (XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
        super(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    XComponentPeer(Component target, long parentWindow, Rectangle bounds) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
        super(target, parentWindow, bounds);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
     * Standard peer constructor, with corresponding Component
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    XComponentPeer(Component target) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
        super(target);
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
    void preInit(XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        super.preInit(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        boundsOperation = DEFAULT_OPERATION;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    void postInit(XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        super.postInit(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
        Color c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        Font  f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        Cursor cursor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
        pSetCursor(target.getCursor());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
        foreground = target.getForeground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        background = target.getBackground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        font = target.getFont();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
        if (isInitialReshape()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
            Rectangle r = target.getBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
            reshape(r.x, r.y, r.width, r.height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
        enabled = target.isEnabled();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
        // If any of our heavyweight ancestors are disable, we should be too
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        // See 6176875 for more information
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        Component comp = target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
        while( !(comp == null || comp instanceof Window) ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
            comp = comp.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
            if( comp != null && !comp.isEnabled() && !comp.isLightweight() ){
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
                setEnabled(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
                break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        enableLog.log(Level.FINE, "Initial enable state: {0}", new Object[] {Boolean.valueOf(enabled)});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        if (target.isVisible()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            show();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
    protected boolean isInitialReshape() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    public void reparent(ContainerPeer newNativeParent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        XComponentPeer newPeer = (XComponentPeer)newNativeParent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
            XlibWrapper.XReparentWindow(XToolkit.getDisplay(), getWindow(), newPeer.getContentWindow(), x, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            parentWindow = newPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
    public boolean isReparentSupported() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        return System.getProperty("sun.awt.X11.XComponentPeer.reparentNotSupported", "false").equals("false");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
90ce3da70b43 Initial load
duke
parents:
diff changeset
   188
    public boolean isObscured() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   189
        Container container  = (target instanceof Container) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            (Container)target : target.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
90ce3da70b43 Initial load
duke
parents:
diff changeset
   192
        if (container == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
        Container parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
        while ((parent = container.getParent()) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
            container = parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
        if (container instanceof Window) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
            XWindowPeer wpeer = (XWindowPeer)(container.getPeer());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
            if (wpeer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
                return (wpeer.winAttr.visibilityState !=
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
                        wpeer.winAttr.AWT_UNOBSCURED);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    public boolean canDetermineObscurity() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
90ce3da70b43 Initial load
duke
parents:
diff changeset
   215
    static XComponentPeer getNativeContainer(Component comp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        if (comp == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
        synchronized(comp.getTreeLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
            while (comp != null && (ComponentAccessor.getPeer(comp) instanceof LightweightPeer)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
                comp = ComponentAccessor.getParent_NoClientCode(comp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   223
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   224
90ce3da70b43 Initial load
duke
parents:
diff changeset
   225
            if (comp != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
                ComponentPeer peer = ComponentAccessor.getPeer(comp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
                if (peer != null && peer instanceof XComponentPeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
                    return (XComponentPeer)peer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
90ce3da70b43 Initial load
duke
parents:
diff changeset
   233
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   234
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   235
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
    /*************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
     * FOCUS STUFF
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
     *************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
     * Keeps the track of focused state of the _NATIVE_ window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
    boolean bHasFocus = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   244
90ce3da70b43 Initial load
duke
parents:
diff changeset
   245
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
     * Descendants should use this method to determine whether or not native window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   247
     * has focus.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
    final public boolean hasFocus() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
        return bHasFocus;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   254
     * Called when component receives focus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   255
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   256
    public void focusGained(FocusEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   257
        focusLog.log(Level.FINE, "{0}", new Object[] {e});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   258
        bHasFocus = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
     * Called when component loses focus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
    public void focusLost(FocusEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
        focusLog.log(Level.FINE, "{0}", new Object[] {e});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        bHasFocus = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
    public boolean isFocusable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        /* should be implemented by other sub-classes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
    private static Class seClass;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
    private static Constructor seCtor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
    final static AWTEvent wrapInSequenced(AWTEvent event) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
            if (seClass == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
                seClass = Class.forName("java.awt.SequencedEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
            if (seCtor == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
                seCtor = (Constructor) AccessController.doPrivileged(new PrivilegedExceptionAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
                        public Object run() throws Exception {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   286
                            Constructor ctor = seClass.getConstructor(new Class[] { AWTEvent.class });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   287
                            ctor.setAccessible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   288
                            return ctor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   289
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   290
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   292
90ce3da70b43 Initial load
duke
parents:
diff changeset
   293
            return (AWTEvent) seCtor.newInstance(new Object[] { event });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        catch (ClassNotFoundException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            throw new NoClassDefFoundError("java.awt.SequencedEvent.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
        catch (PrivilegedActionException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   299
            throw new NoClassDefFoundError("java.awt.SequencedEvent.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   300
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   301
        catch (InstantiationException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   302
            assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        catch (IllegalAccessException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   305
            assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   307
        catch (InvocationTargetException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
            assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   310
90ce3da70b43 Initial load
duke
parents:
diff changeset
   311
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   312
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   313
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
     * Returns whether or not this component should be given focus on mouse click.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
     * Default implementation return whether or not this peer is "focusable"
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
     * Descendants might want to override it to extend/restrict conditions at which this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   318
     * component should be focused by click (see MCanvasPeer and MPanelPeer)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   319
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   320
    protected boolean shouldFocusOnClick() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
        return isFocusable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   322
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   323
90ce3da70b43 Initial load
duke
parents:
diff changeset
   324
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   325
     * Checks whether or not this component would be focused by native system if it would be allowed to do so.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   326
     * Currently it checks that it displayable, visible, enabled and focusable.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   327
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   328
    static boolean canBeFocusedByClick(Component component) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   329
        if (component == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   330
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   331
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   332
            return component.isDisplayable() && component.isVisible() && component.isEnabled() && component.isFocusable();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   333
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   334
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   335
90ce3da70b43 Initial load
duke
parents:
diff changeset
   336
    static Window getContainingWindow(Component comp) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
        while (comp != null && !(comp instanceof Window)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   338
            comp = comp.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   339
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   340
90ce3da70b43 Initial load
duke
parents:
diff changeset
   341
        return (Window)comp;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   342
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   343
90ce3da70b43 Initial load
duke
parents:
diff changeset
   344
    static Method processSynchronousLightweightTransferMethod;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
    static boolean processSynchronousLightweightTransfer(Component heavyweight, Component descendant,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   346
                                                  boolean temporary, boolean focusedWindowChangeAllowed,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   347
                                                  long time)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   348
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   349
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   350
            if (processSynchronousLightweightTransferMethod == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
                processSynchronousLightweightTransferMethod =
90ce3da70b43 Initial load
duke
parents:
diff changeset
   352
                    (Method)AccessController.doPrivileged(
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
                        new PrivilegedExceptionAction() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
                                public Object run() throws IllegalAccessException, NoSuchMethodException
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
                                {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
                                    Method m = KeyboardFocusManager.class.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
                                        getDeclaredMethod("processSynchronousLightweightTransfer",
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
                                                          new Class[] {Component.class, Component.class,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   359
                                                                       Boolean.TYPE, Boolean.TYPE,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   360
                                                                       Long.TYPE});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   361
                                    m.setAccessible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   362
                                    return m;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   363
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   364
                            });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   365
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   366
            Object[] params = new Object[] {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
                        heavyweight,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   368
                        descendant,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   369
                        Boolean.valueOf(temporary),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   370
                        Boolean.valueOf(focusedWindowChangeAllowed),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
                        Long.valueOf(time)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
                    };
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
            return ((Boolean)processSynchronousLightweightTransferMethod.invoke(null, params)).booleanValue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
        } catch (PrivilegedActionException pae) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
            pae.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
        } catch (IllegalAccessException iae) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
            iae.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
        } catch (IllegalArgumentException iaee) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
            iaee.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
        } catch (InvocationTargetException ite) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
            ite.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    static Method requestFocusWithCause;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    static void callRequestFocus(Component target, CausedFocusEvent.Cause cause) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        if (requestFocusWithCause == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
            requestFocusWithCause = SunToolkit.getMethod(Component.class, "requestFocus", new Class[] {CausedFocusEvent.Cause.class});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
        if (requestFocusWithCause != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
                requestFocusWithCause.invoke(target, new Object[] {cause});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   398
            } catch (Exception e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   399
                e.printStackTrace();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   400
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   401
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   402
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   403
90ce3da70b43 Initial load
duke
parents:
diff changeset
   404
    final public boolean requestFocus(Component lightweightChild, boolean temporary,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   405
                                      boolean focusedWindowChangeAllowed, long time, CausedFocusEvent.Cause cause)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   406
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   407
        if (processSynchronousLightweightTransfer(target, lightweightChild, temporary,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   408
                                                  focusedWindowChangeAllowed, time))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   409
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   410
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   411
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   412
90ce3da70b43 Initial load
duke
parents:
diff changeset
   413
        int result = XKeyboardFocusManagerPeer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   414
            .shouldNativelyFocusHeavyweight(target, lightweightChild,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   415
                                            temporary, focusedWindowChangeAllowed, time, cause);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   416
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        switch (result) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   418
          case SNFH_FAILURE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   419
              return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   420
          case SNFH_SUCCESS_PROCEED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   421
              // Currently we just generate focus events like we deal with lightweight instead of calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   422
              // XSetInputFocus on native window
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   423
              if (focusLog.isLoggable(Level.FINER)) focusLog.finer("Proceeding with request to " +
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   424
                  lightweightChild + " in " + target);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
              /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   426
               * The problems with requests in non-focused window arise because shouldNativelyFocusHeavyweight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
               * checks that native window is focused while appropriate WINDOW_GAINED_FOCUS has not yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
               * been processed - it is in EventQueue. Thus, SNFH allows native request and stores request record
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   429
               * in requests list - and it breaks our requests sequence as first record on WGF should be the last
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   430
               * focus owner which had focus before WLF. So, we should not add request record for such requests
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
               * but store this component in mostRecent - and return true as before for compatibility.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   432
               */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   433
              Window parentWindow = getContainingWindow(target);
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   434
              if (parentWindow == null) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   435
                  return rejectFocusRequestHelper("WARNING: Parent window is null");
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   436
              }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   437
              XWindowPeer wpeer = (XWindowPeer)parentWindow.getPeer();
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   438
              if (wpeer == null) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   439
                  return rejectFocusRequestHelper("WARNING: Parent window's peer is null");
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   440
              }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   441
              /*
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   442
               * Passing null 'actualFocusedWindow' as we don't want to restore focus on it
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   443
               * when a component inside a Frame is requesting focus.
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   444
               * See 6314575 for details.
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   445
               */
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   446
              boolean res = wpeer.requestWindowFocus(null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   448
              if (focusLog.isLoggable(Level.FINER)) focusLog.finer("Requested window focus: " + res);
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   449
              // If parent window can be made focused and has been made focused(synchronously)
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   450
              // then we can proceed with children, otherwise we retreat.
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   451
              if (!(res && parentWindow.isFocused())) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   452
                  return rejectFocusRequestHelper("Waiting for asynchronous processing of the request");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
              }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   454
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
              // NOTE: We simulate heavyweight behavior of Motif - component receives focus right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
              // after request, not after event. Normally, we should better listen for event
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
              // by listeners.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
              return XKeyboardFocusManagerPeer.simulateMotifRequestFocus(lightweightChild, target, temporary,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
                                                                         focusedWindowChangeAllowed, time, cause);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
              // Motif compatibility code
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
          case SNFH_SUCCESS_HANDLED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
              // Either lightweight or excessive request - all events are generated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
              return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   468
    private boolean rejectFocusRequestHelper(String logMsg) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   469
        if (focusLog.isLoggable(Level.FINER)) focusLog.finer(logMsg);
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   470
        KeyboardFocusManagerPeerImpl.removeLastFocusRequest(target);
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   471
        return false;
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   472
    }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   473
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
    void handleJavaFocusEvent(AWTEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        if (focusLog.isLoggable(Level.FINER)) focusLog.finer(e.toString());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
        if (e.getID() == FocusEvent.FOCUS_GAINED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
            focusGained((FocusEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
            focusLost((FocusEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   481
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   482
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
    void handleJavaWindowFocusEvent(AWTEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   484
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
    /*************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   487
     * END OF FOCUS STUFF
90ce3da70b43 Initial load
duke
parents:
diff changeset
   488
     *************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
90ce3da70b43 Initial load
duke
parents:
diff changeset
   490
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
    public void setVisible(boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        xSetVisible(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    public void show() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   497
        setVisible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   498
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
    public void hide() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   501
        setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
90ce3da70b43 Initial load
duke
parents:
diff changeset
   504
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
     * @see java.awt.peer.ComponentPeer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    public void setEnabled(boolean value) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
        enableLog.log(Level.FINE, "{0}ing {1}", new Object[] {(value?"Enabl":"Disabl"), this});
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
        boolean repaintNeeded = (enabled != value);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
        enabled = value;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        if (target instanceof Container) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
            Component list[] = ((Container)target).getComponents();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   514
            for (int i = 0; i < list.length; ++i) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   515
                boolean childEnabled = list[i].isEnabled();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   516
                ComponentPeer p = list[i].getPeer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
                if ( p != null ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                    p.setEnabled(value && childEnabled);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
        if (repaintNeeded) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
            repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
    // public so aw/Window can call it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   530
    public boolean isEnabled() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
        return enabled;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   533
90ce3da70b43 Initial load
duke
parents:
diff changeset
   534
90ce3da70b43 Initial load
duke
parents:
diff changeset
   535
90ce3da70b43 Initial load
duke
parents:
diff changeset
   536
    public void enable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
        setEnabled(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    public void disable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
        setEnabled(false);
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 void paint(Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    public void repaint(long tm, int x, int y, int width, int height) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
    public Graphics getGraphics() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
        return getGraphics(surfaceData, getPeerForeground(), getPeerBackground(), getPeerFont());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
    public void print(Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        // clear rect here to emulate X clears rect before Expose
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
        g.setColor(target.getBackground());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
        g.fillRect(0, 0, target.getWidth(), target.getHeight());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   561
        g.setColor(target.getForeground());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
        // paint peer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        paint(g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
        // allow target to change the picture
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
        target.print(g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
    public void setBounds(int x, int y, int width, int height, int op) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
        this.x = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
        this.y = y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
        this.width = width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
        this.height = height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
        xSetBounds(x,y,width,height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
        validateSurface();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        layout();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
    public void reshape(int x, int y, int width, int height) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        setBounds(x, y, width, height, SET_BOUNDS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
    public void coalescePaintEvent(PaintEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
        Rectangle r = e.getUpdateRect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        if (!(e instanceof IgnorePaintEvent)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
            paintArea.add(r, e.getID());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
        if (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
            switch(e.getID()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
              case PaintEvent.UPDATE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
                  log.finer("XCP coalescePaintEvent : UPDATE : add : x = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
                            r.x + ", y = " + r.y + ", width = " + r.width + ",height = " + r.height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
                  return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
              case PaintEvent.PAINT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
                  log.finer("XCP coalescePaintEvent : PAINT : add : x = " +
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                            r.x + ", y = " + r.y + ", width = " + r.width + ",height = " + r.height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
                  return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
    XWindowPeer getParentTopLevel() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
        Container parent = (target instanceof Container) ? ((Container)target) : (ComponentAccessor.getParent_NoClientCode(target));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
        // Search for parent window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
        while (parent != null && !(parent instanceof Window)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
            parent = ComponentAccessor.getParent_NoClientCode(parent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
        if (parent != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
            return (XWindowPeer)ComponentAccessor.getPeer(parent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
    /* This method is intended to be over-ridden by peers to perform user interaction */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
    void handleJavaMouseEvent(MouseEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
        switch (e.getID()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
          case MouseEvent.MOUSE_PRESSED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
              if (target == e.getSource() && shouldFocusOnClick()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
                  && !target.isFocusOwner() && canBeFocusedByClick(target))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
              {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
                  XWindowPeer parentXWindow = getParentTopLevel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
                  Window parentWindow = ((Window)parentXWindow.getTarget());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
                  // Simple windows are non-focusable in X terms but focusable in Java terms.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
                  // As X-non-focusable they don't receive any focus events - we should generate them
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
                  // by ourselfves.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
//                   if (parentXWindow.isFocusableWindow() /*&& parentXWindow.isSimpleWindow()*/ &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
//                       !(getCurrentNativeFocusedWindow() == parentWindow))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
//                   {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
//                       setCurrentNativeFocusedWindow(parentWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
//                       WindowEvent wfg = new WindowEvent(parentWindow, WindowEvent.WINDOW_GAINED_FOCUS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
//                       parentWindow.dispatchEvent(wfg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
//                   }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
                  callRequestFocus(target, CausedFocusEvent.Cause.MOUSE_EVENT);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
              }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
    /* This method is intended to be over-ridden by peers to perform user interaction */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
    void handleJavaKeyEvent(KeyEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
    /* This method is intended to be over-ridden by peers to perform user interaction */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
    void handleJavaMouseWheelEvent(MouseWheelEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    /* This method is intended to be over-ridden by peers to perform user interaction */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
    void handleJavaInputMethodEvent(InputMethodEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   650
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
90ce3da70b43 Initial load
duke
parents:
diff changeset
   652
    void handleF10JavaKeyEvent(KeyEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   653
        if (e.getID() == KeyEvent.KEY_PRESSED && e.getKeyCode() == KeyEvent.VK_F10) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   654
            XWindowPeer winPeer = this.getToplevelXWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
            if (winPeer instanceof XFramePeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   656
                XMenuBarPeer mPeer = ((XFramePeer)winPeer).getMenubarPeer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   657
                if (mPeer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   658
                    mPeer.handleF10KeyPress(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
    public void handleEvent(java.awt.AWTEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   665
        if ((e instanceof InputEvent) && !((InputEvent)e).isConsumed() && target.isEnabled())  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
            if (e instanceof MouseEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   667
                if (e instanceof MouseWheelEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   668
                    handleJavaMouseWheelEvent((MouseWheelEvent) e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   669
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   671
                    handleJavaMouseEvent((MouseEvent) e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   672
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   673
            else if (e instanceof KeyEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
                handleF10JavaKeyEvent((KeyEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
                handleJavaKeyEvent((KeyEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
        else if (e instanceof KeyEvent && !((InputEvent)e).isConsumed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
            // even if target is disabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
            handleF10JavaKeyEvent((KeyEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
        else if (e instanceof InputMethodEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
            handleJavaInputMethodEvent((InputMethodEvent) e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
        int id = e.getID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   687
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
        switch(id) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
          case PaintEvent.PAINT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   690
              // Got native painting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   691
              paintPending = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   692
              // Fallthrough to next statement
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
          case PaintEvent.UPDATE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
              // Skip all painting while layouting and all UPDATEs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
              // while waiting for native paint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   696
              if (!isLayouting && !paintPending) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
                  paintArea.paint(target,false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   698
              }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   699
              return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   700
          case FocusEvent.FOCUS_LOST:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
          case FocusEvent.FOCUS_GAINED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   702
              handleJavaFocusEvent(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   703
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
          case WindowEvent.WINDOW_LOST_FOCUS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
          case WindowEvent.WINDOW_GAINED_FOCUS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
              handleJavaWindowFocusEvent(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   707
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
          default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   710
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
    public void handleButtonPressRelease(XEvent xev) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
        /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
         * Fix for 6385277.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
         * We request focus on simple Window by click in order
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
         * to make it behave like Frame/Dialog in this case and also to unify
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
         * the behaviour with what we have on MS Windows.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
         * handleJavaMouseEvent() would be more suitable place to do this
90ce3da70b43 Initial load
duke
parents:
diff changeset
   721
         * but we want Swing to have this functionality also.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   722
         */
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
   723
        if (xev.get_type() == XConstants.ButtonPress) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   724
            final XWindowPeer parentXWindow = getParentTopLevel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   725
            Window parentWindow = (Window)parentXWindow.getTarget();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   726
            if (parentXWindow.isFocusableWindow() && parentXWindow.isSimpleWindow() &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   727
                XKeyboardFocusManagerPeer.getCurrentNativeFocusedWindow() != parentWindow)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   728
            {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   729
                postEvent(new InvocationEvent(parentWindow, new  Runnable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   730
                        public void run() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   731
                            // Request focus on the EDT of 'parentWindow' because
90ce3da70b43 Initial load
duke
parents:
diff changeset
   732
                            // XDecoratedPeer.requestWindowFocus() calls client code.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   733
                            parentXWindow.requestXFocus();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   734
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   735
                    }));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
        super.handleButtonPressRelease(xev);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
    public Dimension getMinimumSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
        return target.getSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   743
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
    public Dimension getPreferredSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
        return getMinimumSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
    public void layout() {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    public java.awt.Toolkit getToolkit() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
        return Toolkit.getDefaultToolkit();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    void updateMotifColors(Color bg) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
        int red = bg.getRed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
        int green = bg.getGreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        int blue = bg.getBlue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
        darkShadow = new Color(MotifColorUtilities.calculateBottomShadowFromBackground(red,green,blue));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
        lightShadow = new Color(MotifColorUtilities.calculateTopShadowFromBackground(red,green,blue));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        selectColor= new Color(MotifColorUtilities.calculateSelectFromBackground(red,green,blue));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   766
     * Draw a 3D rectangle using the Motif colors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
     * "Normal" rectangles have shadows on the bottom.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
     * "Depressed" rectangles (such as pressed buttons) have shadows on the top,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
     * in which case true should be passed for topShadow.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   770
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    public void drawMotif3DRect(Graphics g,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
                                          int x, int y, int width, int height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
                                          boolean topShadow) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        g.setColor(topShadow ? darkShadow : lightShadow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
        g.drawLine(x, y, x+width, y);       // top
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
        g.drawLine(x, y+height, x, y);      // left
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
        g.setColor(topShadow ? lightShadow : darkShadow );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
        g.drawLine(x+1, y+height, x+width, y+height); // bottom
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
        g.drawLine(x+width, y+height, x+width, y+1);  // right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    public void setBackground(Color c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
        if (log.isLoggable(Level.FINE)) log.fine("Set background to " + c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
        synchronized (getStateLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
            background = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
        super.setBackground(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    public void setForeground(Color c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
        if (log.isLoggable(Level.FINE)) log.fine("Set foreground to " + c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
        synchronized (getStateLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
            foreground = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
     * Gets the font metrics for the specified font.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
     * @param font the font for which font metrics is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
     *      obtained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
     * @return the font metrics for <code>font</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
     * @see       #getFont
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
     * @see       #getPeer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
     * @see       java.awt.peer.ComponentPeer#getFontMetrics(Font)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
     * @see       Toolkit#getFontMetrics(Font)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
     * @since     JDK1.0
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
    public FontMetrics getFontMetrics(Font font) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
        if (fontLog.isLoggable(Level.FINE)) fontLog.fine("Getting font metrics for " + font);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
        return sun.font.FontDesignMetrics.getMetrics(font);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   814
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   815
90ce3da70b43 Initial load
duke
parents:
diff changeset
   816
    public void setFont(Font f) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        synchronized (getStateLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   818
            if (f == null) {
116
9c43d9eb1029 6645856: static field XWindowPeer.defaultFont hides XWindow.defaultFont
son
parents: 2
diff changeset
   819
                f = XWindow.getDefaultFont();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
            font = f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        // as it stands currently we dont need to do layout or repaint since
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        // layout is done in the Component upon setFont.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
        //layout();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
        // target.repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
        //repaint()?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
    public Font getFont() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
        return font;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
    public void updateCursorImmediately() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
        XGlobalCursorManager.getCursorManager().updateCursorImmediately();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
    public void pSetCursor(Cursor cursor) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
            long xcursor = XGlobalCursorManager.getCursor(cursor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
            XSetWindowAttributes xwa = new XSetWindowAttributes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
            xwa.set_cursor(xcursor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
   846
            long valuemask = XConstants.CWCursor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
            XlibWrapper.XChangeWindowAttributes(XToolkit.getDisplay(),getWindow(),valuemask,xwa.pData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
            XlibWrapper.XFlush(XToolkit.getDisplay());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
            xwa.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
    public Image createImage(ImageProducer producer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
        return new ToolkitImage(producer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
    public Image createImage(int width, int height) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
        return graphicsConfig.createAcceleratedImage(target, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
    public VolatileImage createVolatileImage(int width, int height) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
        return new SunVolatileImage(target, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
    public boolean prepareImage(Image img, int w, int h, ImageObserver o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
        return getToolkit().prepareImage(img, w, h, o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
    public int checkImage(Image img, int w, int h, ImageObserver o) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
        return getToolkit().checkImage(img, w, h, o);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
    public Dimension preferredSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
        return getPreferredSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
    public Dimension minimumSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
        return getMinimumSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
    public Insets getInsets() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
        return new Insets(0, 0, 0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
    public void beginValidate() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
    public void endValidate() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
     * DEPRECATED:  Replaced by getInsets().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
    public Insets insets() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
        return getInsets();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
    // Returns true if we are inside begin/endLayout and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
    // are waiting for native painting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
    public boolean isPaintPending() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
        return paintPending && isLayouting;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
    public boolean handlesWheelScrolling() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
    public void beginLayout() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        // Skip all painting till endLayout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
        isLayouting = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
    public void endLayout() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
        if (!paintPending && !paintArea.isEmpty()
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
            && !ComponentAccessor.getIgnoreRepaint(target))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
            // if not waiting for native painting repaint damaged area
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
            postEvent(new PaintEvent(target, PaintEvent.PAINT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
                                     new Rectangle()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
        isLayouting = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
    public Color getWinBackground() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
        return getPeerBackground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
    static int[] getRGBvals(Color c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
        int rgbvals[] = new int[3];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
        rgbvals[0] = c.getRed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
        rgbvals[1] = c.getGreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
        rgbvals[2] = c.getBlue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
        return rgbvals;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
    static final int BACKGROUND_COLOR = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
    static final int HIGHLIGHT_COLOR = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    static final int SHADOW_COLOR = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
    static final int FOREGROUND_COLOR = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
    public Color[] getGUIcolors() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
        Color c[] = new Color[4];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
        float backb, highb, shadowb, hue, saturation;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
        c[BACKGROUND_COLOR] = getWinBackground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
        if (c[BACKGROUND_COLOR] == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
            c[BACKGROUND_COLOR] = super.getWinBackground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
        if (c[BACKGROUND_COLOR] == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
            c[BACKGROUND_COLOR] = Color.lightGray;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
        int[] rgb = getRGBvals(c[BACKGROUND_COLOR]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
        float[] hsb = Color.RGBtoHSB(rgb[0],rgb[1],rgb[2],null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
        hue = hsb[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
        saturation = hsb[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
        backb = hsb[2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
/*      Calculate Highlight Brightness  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
        highb = backb + 0.2f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
        shadowb = backb - 0.4f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
        if ((highb > 1.0) ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
            if  ((1.0 - backb) < 0.05) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
                highb = shadowb + 0.25f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
                highb = 1.0f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
            if (shadowb < 0.0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
                if ((backb - 0.0) < 0.25) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
                    highb = backb + 0.75f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
                    shadowb = highb - 0.2f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
                    shadowb = 0.0f;
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
        c[HIGHLIGHT_COLOR] = Color.getHSBColor(hue,saturation,highb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
        c[SHADOW_COLOR] = Color.getHSBColor(hue,saturation,shadowb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
  c[SHADOW_COLOR] = c[BACKGROUND_COLOR].darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
  int r2 = c[SHADOW_COLOR].getRed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
  int g2 = c[SHADOW_COLOR].getGreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
  int b2 = c[SHADOW_COLOR].getBlue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
        c[FOREGROUND_COLOR] = getPeerForeground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
        if (c[FOREGROUND_COLOR] == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
            c[FOREGROUND_COLOR] = Color.black;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
  if ((c[BACKGROUND_COLOR].equals(c[HIGHLIGHT_COLOR]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
  && (c[BACKGROUND_COLOR].equals(c[SHADOW_COLOR]))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
  c[SHADOW_COLOR] = new Color(c[BACKGROUND_COLOR].getRed() + 75,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
  c[BACKGROUND_COLOR].getGreen() + 75,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
  c[BACKGROUND_COLOR].getBlue() + 75);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
  c[HIGHLIGHT_COLOR] = c[SHADOW_COLOR].brighter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
  } else if (c[BACKGROUND_COLOR].equals(c[HIGHLIGHT_COLOR])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
  c[HIGHLIGHT_COLOR] = c[SHADOW_COLOR];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
  c[SHADOW_COLOR] = c[SHADOW_COLOR].darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
        if (! isEnabled()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
            c[BACKGROUND_COLOR] = c[BACKGROUND_COLOR].darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
            // Reduce the contrast
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
            // Calculate the NTSC gray (NB: REC709 L* might be better!)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
            // for foreground and background; then multiply the foreground
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
            // by the average lightness
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
            Color tc = c[BACKGROUND_COLOR];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
            int bg = tc.getRed() * 30 + tc.getGreen() * 59 + tc.getBlue() * 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
            tc = c[FOREGROUND_COLOR];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
            int fg = tc.getRed() * 30 + tc.getGreen() * 59 + tc.getBlue() * 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
            float ave = (float) ((fg + bg) / 51000.0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
            // 255 * 100 * 2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
            Color newForeground = new Color((int) (tc.getRed() * ave),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
                                            (int) (tc.getGreen() * ave),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
                                            (int) (tc.getBlue() * ave));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            if (newForeground.equals(c[FOREGROUND_COLOR])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
                // This probably means the foreground color is black or white
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
                newForeground = new Color(ave, ave, ave);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
            c[FOREGROUND_COLOR] = newForeground;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
        return c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
     * Returns an array of Colors similar to getGUIcolors(), but using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
     * System colors.  This is useful if pieces of a Component (such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
     * the integrated scrollbars of a List) should retain the System color
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
     * instead of the background color set by Component.setBackground().
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
    static Color[] getSystemColors() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
        if (systemColors == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
            systemColors = new Color[4];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
            systemColors[BACKGROUND_COLOR] = SystemColor.window;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
            systemColors[HIGHLIGHT_COLOR] = SystemColor.controlLtHighlight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
            systemColors[SHADOW_COLOR] = SystemColor.controlShadow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
            systemColors[FOREGROUND_COLOR] = SystemColor.windowText;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
        return systemColors;
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
     * Draw a 3D oval.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
    public void draw3DOval(Graphics g, Color colors[],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
                           int x, int y, int w, int h, boolean raised)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
        Color c = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
        g.setColor(raised ? colors[HIGHLIGHT_COLOR] : colors[SHADOW_COLOR]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
        g.drawArc(x, y, w, h, 45, 180);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
        g.setColor(raised ? colors[SHADOW_COLOR] : colors[HIGHLIGHT_COLOR]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
        g.drawArc(x, y, w, h, 225, 180);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
        g.setColor(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
    public void draw3DRect(Graphics g, Color colors[],
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
                           int x, int y, int width, int height, boolean raised)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
            Color c = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
            g.setColor(raised ? colors[HIGHLIGHT_COLOR] : colors[SHADOW_COLOR]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
            g.drawLine(x, y, x, y + height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
            g.drawLine(x + 1, y, x + width - 1, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
            g.setColor(raised ? colors[SHADOW_COLOR] : colors[HIGHLIGHT_COLOR]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
            g.drawLine(x + 1, y + height, x + width, y + height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
            g.drawLine(x + width, y, x + width, y + height - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
            g.setColor(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
     * drawXXX() methods are used to print the native components by
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
     * rendering the Motif look ourselves.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
     * ToDo(aim): needs to query native motif for more accurate color
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
     * information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
    void draw3DOval(Graphics g, Color bg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
                    int x, int y, int w, int h, boolean raised)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
            Color c = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
            Color shadow = bg.darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
            Color highlight = bg.brighter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
            g.setColor(raised ? highlight : shadow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
            g.drawArc(x, y, w, h, 45, 180);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
            g.setColor(raised ? shadow : highlight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
            g.drawArc(x, y, w, h, 225, 180);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
            g.setColor(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
    void draw3DRect(Graphics g, Color bg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
                    int x, int y, int width, int height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
                    boolean raised) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
        Color c = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
        Color shadow = bg.darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
        Color highlight = bg.brighter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
        g.setColor(raised ? highlight : shadow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
        g.drawLine(x, y, x, y + height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
        g.drawLine(x + 1, y, x + width - 1, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
        g.setColor(raised ? shadow : highlight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
        g.drawLine(x + 1, y + height, x + width, y + height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
        g.drawLine(x + width, y, x + width, y + height - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
        g.setColor(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
    void drawScrollbar(Graphics g, Color bg, int thickness, int length,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
               int min, int max, int val, int vis, boolean horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
        Color c = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
        double f = (double)(length - 2*(thickness-1)) / Math.max(1, ((max - min) + vis));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
        int v1 = thickness + (int)(f * (val - min));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
        int v2 = (int)(f * vis);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
        int w2 = thickness-4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
        int tpts_x[] = new int[3];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
        int tpts_y[] = new int[3];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
        if (length < 3*w2 ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
            v1 = v2 = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
            if (length < 2*w2 + 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
                w2 = (length-2)/2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
        } else  if (v2 < 7) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
            // enforce a minimum handle size
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
            v1 = Math.max(0, v1 - ((7 - v2)>>1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
            v2 = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
        int ctr   = thickness/2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
        int sbmin = ctr - w2/2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
        int sbmax = ctr + w2/2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
        // paint the background slightly darker
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
            Color d = new Color((int) (bg.getRed()   * 0.85),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
                                (int) (bg.getGreen() * 0.85),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
                                (int) (bg.getBlue()  * 0.85));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
            g.setColor(d);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
            if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
                g.fillRect(0, 0, length, thickness);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
                g.fillRect(0, 0, thickness, length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1166
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1167
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1168
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1169
        // paint the thumb and arrows in the normal background color
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
        g.setColor(bg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
        if (v1 > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
            if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
                g.fillRect(v1, 3, v2, thickness-3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1174
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1175
                g.fillRect(3, v1, thickness-3, v2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1179
        tpts_x[0] = ctr;    tpts_y[0] = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
        tpts_x[1] = sbmin;  tpts_y[1] = w2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
        tpts_x[2] = sbmax;  tpts_y[2] = w2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1182
        if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1183
            g.fillPolygon(tpts_y, tpts_x, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
            g.fillPolygon(tpts_x, tpts_y, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
        tpts_y[0] = length-2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1189
        tpts_y[1] = length-w2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1190
        tpts_y[2] = length-w2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1191
        if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1192
            g.fillPolygon(tpts_y, tpts_x, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1193
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1194
            g.fillPolygon(tpts_x, tpts_y, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1195
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1196
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1197
        Color highlight = bg.brighter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
        // // // // draw the "highlighted" edges
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
        g.setColor(highlight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
        // outline & arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1203
        if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1204
            g.drawLine(1, thickness, length - 1, thickness);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
            g.drawLine(length - 1, 1, length - 1, thickness);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
            // arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1208
            g.drawLine(1, ctr, w2, sbmin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
            g.drawLine(length - w2, sbmin, length - w2, sbmax);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
            g.drawLine(length - w2, sbmin, length - 2, ctr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
            g.drawLine(thickness, 1, thickness, length - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
            g.drawLine(1, length - 1, thickness, length - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
            // arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
            g.drawLine(ctr, 1, sbmin, w2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1218
            g.drawLine(sbmin, length - w2, sbmax, length - w2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
            g.drawLine(sbmin, length - w2, ctr, length - 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
        // thumb
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
        if (v1 > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
            if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
                g.drawLine(v1, 2, v1 + v2, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
                g.drawLine(v1, 2, v1, thickness-3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
                g.drawLine(2, v1, 2, v1 + v2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1229
                g.drawLine(2, v1, thickness-3, v1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1233
        Color shadow = bg.darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
        // // // // draw the "shadowed" edges
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
        g.setColor(shadow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
        // outline && arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
        if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
            g.drawLine(0, 0, 0, thickness);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
            g.drawLine(0, 0, length - 1, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
            // arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
            g.drawLine(w2, sbmin, w2, sbmax);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
            g.drawLine(w2, sbmax, 1, ctr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
            g.drawLine(length-2, ctr, length-w2, sbmax);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
            g.drawLine(0, 0, thickness, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
            g.drawLine(0, 0, 0, length - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
            // arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1253
            g.drawLine(sbmin, w2, sbmax, w2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1254
            g.drawLine(sbmax, w2, ctr, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1255
            g.drawLine(ctr, length-2, sbmax, length-w2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1258
        // thumb
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1259
        if (v1 > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1260
            if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1261
                g.drawLine(v1 + v2, 2, v1 + v2, thickness-2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1262
                g.drawLine(v1, thickness-2, v1 + v2, thickness-2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1263
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1264
                g.drawLine(2, v1 + v2, thickness-2, v1 + v2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1265
                g.drawLine(thickness-2, v1, thickness-2, v1 + v2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1266
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1267
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
        g.setColor(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1272
     * The following multibuffering-related methods delegate to our
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1273
     * associated GraphicsConfig (X11 or GLX) to handle the appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
     * native windowing system specific actions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
    public void createBuffers(int numBuffers, BufferCapabilities caps)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
      throws AWTException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
        if (buffersLog.isLoggable(Level.FINE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
            buffersLog.fine("createBuffers(" + numBuffers + ", " + caps + ")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
        backBuffer = graphicsConfig.createBackBuffer(this, numBuffers, caps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
        xBackBuffer = graphicsConfig.createBackBufferImage(target,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
                                                           backBuffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
    public void flip(BufferCapabilities.FlipContents flipAction) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
        if (buffersLog.isLoggable(Level.FINE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
            buffersLog.fine("flip(" + flipAction + ")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
        if (backBuffer == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
            throw new IllegalStateException("Buffers have not been created");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
        graphicsConfig.flip(this, target, xBackBuffer, flipAction);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
    public Image getBackBuffer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
        if (buffersLog.isLoggable(Level.FINE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
            buffersLog.fine("getBackBuffer()");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
        if (backBuffer == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
            throw new IllegalStateException("Buffers have not been created");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
        return xBackBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
    public void destroyBuffers() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
        if (buffersLog.isLoggable(Level.FINE)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
            buffersLog.fine("destroyBuffers()");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
        graphicsConfig.destroyBackBuffer(backBuffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
        backBuffer = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
        xBackBuffer = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
    // End of multi-buffering
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1319
    public void notifyTextComponentChange(boolean add){
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1320
        Container parent = ComponentAccessor.getParent_NoClientCode(target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1321
        while(!(parent == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1322
                parent instanceof java.awt.Frame ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1323
                parent instanceof java.awt.Dialog)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1324
        parent = ComponentAccessor.getParent_NoClientCode(parent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1326
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1327
/*      FIX ME - FIX ME need to implement InputMethods
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1328
    if (parent instanceof java.awt.Frame ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1329
        parent instanceof java.awt.Dialog) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1330
        if (add)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
        ((MInputMethodControl)parent.getPeer()).addTextComponent((MComponentPeer)this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
        ((MInputMethodControl)parent.getPeer()).removeTextComponent((MComponentPeer)this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1334
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1337
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
     * Returns true if this event is disabled and shouldn't be processed by window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
     * Currently if target component is disabled the following event will be disabled on window:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
     * ButtonPress, ButtonRelease, KeyPress, KeyRelease, EnterNotify, LeaveNotify, MotionNotify
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
    protected boolean isEventDisabled(XEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
        enableLog.log(Level.FINEST, "Component is {1}, checking for disabled event {0}", new Object[] {e, (isEnabled()?"enabled":"disable")});
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
        if (!isEnabled()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
            switch (e.get_type()) {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1347
              case XConstants.ButtonPress:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1348
              case XConstants.ButtonRelease:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1349
              case XConstants.KeyPress:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1350
              case XConstants.KeyRelease:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1351
              case XConstants.EnterNotify:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1352
              case XConstants.LeaveNotify:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1353
              case XConstants.MotionNotify:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
                  enableLog.log(Level.FINER, "Event {0} is disable", new Object[] {e});
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
                  return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
        switch(e.get_type()) {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1359
          case XConstants.MapNotify:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1360
          case XConstants.UnmapNotify:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1361
              return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
        return super.isEventDisabled(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
    Color getPeerBackground() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
        return background;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
    Color getPeerForeground() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
        return foreground;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
    Font getPeerFont() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1375
        return font;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1376
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
    Dimension getPeerSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
        return new Dimension(width,height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
    public void setBoundsOperation(int operation) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
        synchronized(getStateLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
            if (boundsOperation == DEFAULT_OPERATION) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
                boundsOperation = operation;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
            } else if (operation == RESET_OPERATION) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
                boundsOperation = DEFAULT_OPERATION;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1389
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
    static String operationToString(int operation) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
        switch (operation) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
          case SET_LOCATION:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
              return "SET_LOCATION";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
          case SET_SIZE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
              return "SET_SIZE";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1398
          case SET_CLIENT_SIZE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1399
              return "SET_CLIENT_SIZE";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1400
          default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1401
          case SET_BOUNDS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1402
              return "SET_BOUNDS";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1403
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1404
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1405
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1406
    public void restack() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1407
        synchronized(target.getTreeLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1408
            // Build the list of X windows in the window corresponding to this container
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1409
            // This list is already in correct Java stacking order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1410
            Container cont = (Container)target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1411
            Vector order = new Vector(cont.getComponentCount());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1412
            HashSet set = new HashSet();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1413
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1414
            addTree(order, set, cont);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1415
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1416
            XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1417
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1418
                // Get the current list of X window in X window. Some of the windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1419
                // might be only native
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1420
                XQueryTree qt = new XQueryTree(getContentWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
                try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
                    if (qt.execute() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
                        if (qt.get_nchildren() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
                            long pchildren = qt.get_children();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1425
                            int j = 0; // index to insert
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
                            for (int i = 0; i < qt.get_nchildren(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
                                Long w = Long.valueOf(Native.getLong(pchildren, i));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
                                if (!set.contains(w)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
                                    set.add(w);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1430
                                    order.add(j++, w);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1431
                                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1432
                            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1433
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1434
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1435
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1436
                    if (order.size() != 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1437
                        // Create native array of the windows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1438
                        long windows = Native.allocateLongArray(order.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1439
                        Native.putLong(windows, order);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1440
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1441
                        // Restack native window according to the new order
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1442
                        XlibWrapper.XRestackWindows(XToolkit.getDisplay(), windows, order.size());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1443
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1444
                        XlibWrapper.unsafe.freeMemory(windows);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1445
                    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1446
                } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1447
                    qt.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1448
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1449
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1450
                XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1451
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1452
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1454
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1455
    public boolean isRestackSupported() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1456
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1457
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1458
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1459
    private void addTree(Collection order, Set set, Container cont) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1460
        for (int i = 0; i < cont.getComponentCount(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1461
            Component comp = cont.getComponent(i);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1462
            ComponentPeer peer = comp.getPeer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1463
            if (peer instanceof XComponentPeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1464
                Long window = Long.valueOf(((XComponentPeer)peer).getWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1465
                if (!set.contains(window)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1466
                    set.add(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1467
                    order.add(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1468
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1469
            } else if (comp instanceof Container) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1470
                // It is lightweight container, it might contain heavyweight components attached to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1471
                // peer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1472
                addTree(order, set, (Container)comp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1473
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1474
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1475
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1476
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1477
    /****** DropTargetPeer implementation ********************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1478
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1479
    public void addDropTarget(DropTarget dt) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1480
        Component comp = target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1481
        while(!(comp == null || comp instanceof Window)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1482
            comp = comp.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1483
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1484
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1485
        if (comp instanceof Window) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1486
            XWindowPeer wpeer = (XWindowPeer)(comp.getPeer());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1487
            if (wpeer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1488
                wpeer.addDropTarget();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1489
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1490
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1491
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1492
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1493
    public void removeDropTarget(DropTarget dt) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1494
        Component comp = target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1495
        while(!(comp == null || comp instanceof Window)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1496
            comp = comp.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1497
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1498
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1499
        if (comp instanceof Window) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1500
            XWindowPeer wpeer = (XWindowPeer)(comp.getPeer());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1501
            if (wpeer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1502
                wpeer.removeDropTarget();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1503
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1504
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1505
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1506
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1507
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1508
     * Applies the shape to the X-window.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1509
     * @since 1.7
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1510
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1511
    public void applyShape(Region shape) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1512
        if (XlibUtil.isShapingSupported()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1513
            if (shapeLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1514
                shapeLog.finer(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1515
                        "*** INFO: Setting shape: PEER: " + this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1516
                        + "; WINDOW: " + getWindow()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1517
                        + "; TARGET: " + target
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1518
                        + "; SHAPE: " + shape);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1519
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1520
            XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1521
            try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1522
                XlibWrapper.SetRectangularShape(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1523
                        XToolkit.getDisplay(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1524
                        getWindow(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1525
                        shape.getLoX(), shape.getLoY(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1526
                        shape.getHiX(), shape.getHiY(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1527
                        (shape.isRectangular() ? null : shape)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1528
                        );
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1529
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1530
                XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1531
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1532
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1533
            if (shapeLog.isLoggable(Level.FINER)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1534
                shapeLog.finer("*** WARNING: Shaping is NOT supported!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1535
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1536
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1537
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1538
}