jdk/src/java.desktop/unix/classes/sun/awt/X11/XComponentPeer.java
author alexsch
Fri, 13 Nov 2015 18:36:14 +0400
changeset 34395 2ac7e99f7f4a
parent 32865 f9cb6e427f9e
child 35667 ed476aba94de
permissions -rw-r--r--
8137571: Linux HiDPI Graphics support Reviewed-by: flar, serb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
     2
 * Copyright (c) 2002, 2015, Oracle and/or its affiliates. All rights reserved.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
90ce3da70b43 Initial load
duke
parents:
diff changeset
     4
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
90ce3da70b43 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4371
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4371
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    10
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
90ce3da70b43 Initial load
duke
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
90ce3da70b43 Initial load
duke
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
90ce3da70b43 Initial load
duke
parents:
diff changeset
    15
 * accompanied this code).
90ce3da70b43 Initial load
duke
parents:
diff changeset
    16
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
90ce3da70b43 Initial load
duke
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    20
 *
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4371
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4371
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 4371
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package sun.awt.X11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.awt.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;
2459
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2458
diff changeset
    38
import java.awt.GraphicsConfiguration;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.awt.Image;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.awt.Insets;
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.image.ImageObserver;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
import java.awt.image.ImageProducer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
import java.awt.image.VolatileImage;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
import java.awt.peer.ComponentPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
import java.awt.peer.ContainerPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
import java.lang.reflect.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
import java.security.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
import java.util.Collection;
21270
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
    63
import java.util.Objects;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
import java.util.Set;
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
    65
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
    66
import sun.awt.AWTAccessor.ComponentAccessor;
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2805
diff changeset
    67
import sun.util.logging.PlatformLogger;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
import sun.awt.*;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
import sun.awt.event.IgnorePaintEvent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
import sun.awt.image.SunVolatileImage;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
import sun.awt.image.ToolkitImage;
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
    72
import sun.java2d.BackBufferCapsProvider;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
import sun.java2d.pipe.Region;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
12813
c10ab96dcf41 7170969: Add @GenerateNativeHeader to classes whose fields need to be exported for JNI
erikj
parents: 12406
diff changeset
    75
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
    76
public class XComponentPeer extends XWindow implements ComponentPeer, DropTargetPeer,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
    77
    BackBufferCapsProvider
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
    78
{
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2805
diff changeset
    79
    private static final PlatformLogger log = PlatformLogger.getLogger("sun.awt.X11.XComponentPeer");
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2805
diff changeset
    80
    private static final PlatformLogger buffersLog = PlatformLogger.getLogger("sun.awt.X11.XComponentPeer.multibuffer");
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2805
diff changeset
    81
    private static final PlatformLogger focusLog = PlatformLogger.getLogger("sun.awt.X11.focus.XComponentPeer");
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2805
diff changeset
    82
    private static final PlatformLogger fontLog = PlatformLogger.getLogger("sun.awt.X11.font.XComponentPeer");
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2805
diff changeset
    83
    private static final PlatformLogger enableLog = PlatformLogger.getLogger("sun.awt.X11.enable.XComponentPeer");
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2805
diff changeset
    84
    private static final PlatformLogger shapeLog = PlatformLogger.getLogger("sun.awt.X11.shape.XComponentPeer");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    boolean paintPending = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    boolean isLayouting = false;
12406
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
    88
    private boolean enabled;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
    // Actually used only by XDecoratedPeer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
    protected int boundsOperation;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
    Color foreground;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    Color background;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    // Colors calculated as on Motif using MotifColorUtilties.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
    // If you use these, call updateMotifColors() in the peer's Constructor and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    // setBackground().  Examples are XCheckboxPeer and XButtonPeer.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
    Color darkShadow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
    Color lightShadow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
    Color selectColor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    Font font;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    private long backBuffer = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
    private VolatileImage xBackBuffer = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
    static Color[] systemColors;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
    XComponentPeer() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
    XComponentPeer (XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        super(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
    XComponentPeer(Component target, long parentWindow, Rectangle bounds) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
        super(target, parentWindow, bounds);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * Standard peer constructor, with corresponding Component
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    XComponentPeer(Component target) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        super(target);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    void preInit(XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        super.preInit(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
        boundsOperation = DEFAULT_OPERATION;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    void postInit(XCreateWindowParams params) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        super.postInit(params);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
        pSetCursor(target.getCursor());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        foreground = target.getForeground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
        background = target.getBackground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
        font = target.getFont();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        if (isInitialReshape()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
            Rectangle r = target.getBounds();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
            reshape(r.x, r.y, r.width, r.height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
12406
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   146
        setEnabled(target.isEnabled());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
        if (target.isVisible()) {
2458
f4bee3ba17ee 6806224: PIT : Getting java.lang.NullPointerException while opening Filedialog
dcherepanov
parents: 1978
diff changeset
   149
            setVisible(true);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
    protected boolean isInitialReshape() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
    public void reparent(ContainerPeer newNativeParent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
        XComponentPeer newPeer = (XComponentPeer)newNativeParent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   159
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
        try {
34395
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 32865
diff changeset
   161
            XlibWrapper.XReparentWindow(XToolkit.getDisplay(),
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 32865
diff changeset
   162
                                        getWindow(), newPeer.getContentWindow(),
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 32865
diff changeset
   163
                                        scaleUp(x), scaleUp(y));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
            parentWindow = newPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   166
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
    public boolean isReparentSupported() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   170
        return System.getProperty("sun.awt.X11.XComponentPeer.reparentNotSupported", "false").equals("false");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
28231
b608ffcaed74 8066621: Suppress deprecation warnings in java.desktop module
darcy
parents: 25859
diff changeset
   173
    @SuppressWarnings("deprecation")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
    public boolean isObscured() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   175
        Container container  = (target instanceof Container) ?
90ce3da70b43 Initial load
duke
parents:
diff changeset
   176
            (Container)target : target.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   177
90ce3da70b43 Initial load
duke
parents:
diff changeset
   178
        if (container == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   179
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   180
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   181
90ce3da70b43 Initial load
duke
parents:
diff changeset
   182
        Container parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   183
        while ((parent = container.getParent()) != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   184
            container = parent;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   185
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   186
90ce3da70b43 Initial load
duke
parents:
diff changeset
   187
        if (container instanceof Window) {
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
   188
            XWindowPeer wpeer = AWTAccessor.getComponentAccessor()
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
   189
                                           .getPeer(container);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   190
            if (wpeer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   191
                return (wpeer.winAttr.visibilityState !=
22567
5816a47fa4dd 8032047: Fix static lint warnings in client libraries
darcy
parents: 21278
diff changeset
   192
                        XWindowAttributesData.AWT_UNOBSCURED);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   193
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   194
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   195
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   196
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   197
90ce3da70b43 Initial load
duke
parents:
diff changeset
   198
    public boolean canDetermineObscurity() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   199
        return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   200
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   201
90ce3da70b43 Initial load
duke
parents:
diff changeset
   202
    /*************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   203
     * FOCUS STUFF
90ce3da70b43 Initial load
duke
parents:
diff changeset
   204
     *************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   205
90ce3da70b43 Initial load
duke
parents:
diff changeset
   206
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   207
     * Keeps the track of focused state of the _NATIVE_ window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   208
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   209
    boolean bHasFocus = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   210
90ce3da70b43 Initial load
duke
parents:
diff changeset
   211
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   212
     * Descendants should use this method to determine whether or not native window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   213
     * has focus.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   214
     */
32865
f9cb6e427f9e 8136783: Run blessed-modifier-order script on java.desktop
prr
parents: 30948
diff changeset
   215
    public final boolean hasFocus() {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   216
        return bHasFocus;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   217
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   218
90ce3da70b43 Initial load
duke
parents:
diff changeset
   219
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   220
     * Called when component receives focus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   221
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   222
    public void focusGained(FocusEvent e) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   223
        if (focusLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   224
            focusLog.fine("{0}", e);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   225
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   226
        bHasFocus = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   227
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   228
90ce3da70b43 Initial load
duke
parents:
diff changeset
   229
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   230
     * Called when component loses focus
90ce3da70b43 Initial load
duke
parents:
diff changeset
   231
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   232
    public void focusLost(FocusEvent e) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   233
        if (focusLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   234
            focusLog.fine("{0}", e);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   235
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   236
        bHasFocus = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   237
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   238
90ce3da70b43 Initial load
duke
parents:
diff changeset
   239
    public boolean isFocusable() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   240
        /* should be implemented by other sub-classes */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   241
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   242
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   243
24538
25bf8153fbfe 8039642: Fix raw and unchecked warnings in sun.awt.*
henryjen
parents: 24191
diff changeset
   244
    private static Class<?> seClass;
25bf8153fbfe 8039642: Fix raw and unchecked warnings in sun.awt.*
henryjen
parents: 24191
diff changeset
   245
    private static Constructor<?> seCtor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   246
32865
f9cb6e427f9e 8136783: Run blessed-modifier-order script on java.desktop
prr
parents: 30948
diff changeset
   247
    static final AWTEvent wrapInSequenced(AWTEvent event) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   248
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   249
            if (seClass == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   250
                seClass = Class.forName("java.awt.SequencedEvent");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   251
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   252
90ce3da70b43 Initial load
duke
parents:
diff changeset
   253
            if (seCtor == null) {
24538
25bf8153fbfe 8039642: Fix raw and unchecked warnings in sun.awt.*
henryjen
parents: 24191
diff changeset
   254
                seCtor = AccessController.doPrivileged(new
25bf8153fbfe 8039642: Fix raw and unchecked warnings in sun.awt.*
henryjen
parents: 24191
diff changeset
   255
                    PrivilegedExceptionAction<Constructor<?>>() {
25bf8153fbfe 8039642: Fix raw and unchecked warnings in sun.awt.*
henryjen
parents: 24191
diff changeset
   256
                        public Constructor<?> run() throws Exception {
25bf8153fbfe 8039642: Fix raw and unchecked warnings in sun.awt.*
henryjen
parents: 24191
diff changeset
   257
                            Constructor<?> ctor = seClass.getConstructor(
25bf8153fbfe 8039642: Fix raw and unchecked warnings in sun.awt.*
henryjen
parents: 24191
diff changeset
   258
                                new Class<?>[] { AWTEvent.class });
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   259
                            ctor.setAccessible(true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   260
                            return ctor;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   261
                        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   262
                    });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   263
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   264
90ce3da70b43 Initial load
duke
parents:
diff changeset
   265
            return (AWTEvent) seCtor.newInstance(new Object[] { event });
90ce3da70b43 Initial load
duke
parents:
diff changeset
   266
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   267
        catch (ClassNotFoundException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   268
            throw new NoClassDefFoundError("java.awt.SequencedEvent.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   269
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   270
        catch (PrivilegedActionException ex) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   271
            throw new NoClassDefFoundError("java.awt.SequencedEvent.");
90ce3da70b43 Initial load
duke
parents:
diff changeset
   272
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   273
        catch (InstantiationException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   274
            assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   275
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   276
        catch (IllegalAccessException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   277
            assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   278
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   279
        catch (InvocationTargetException e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   280
            assert false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   281
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   282
90ce3da70b43 Initial load
duke
parents:
diff changeset
   283
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   284
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   285
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   286
    // TODO: consider moving it to KeyboardFocusManagerPeerImpl
28231
b608ffcaed74 8066621: Suppress deprecation warnings in java.desktop module
darcy
parents: 25859
diff changeset
   287
    @SuppressWarnings("deprecation")
32865
f9cb6e427f9e 8136783: Run blessed-modifier-order script on java.desktop
prr
parents: 30948
diff changeset
   288
    public final boolean requestFocus(Component lightweightChild, boolean temporary,
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   289
                                      boolean focusedWindowChangeAllowed, long time,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   290
                                      CausedFocusEvent.Cause cause)
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   291
    {
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   292
        if (XKeyboardFocusManagerPeer.
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   293
            processSynchronousLightweightTransfer(target, lightweightChild, temporary,
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   294
                                                  focusedWindowChangeAllowed, time))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   295
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   296
            return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   297
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   298
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   299
        int result = XKeyboardFocusManagerPeer.
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   300
            shouldNativelyFocusHeavyweight(target, lightweightChild,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   301
                                           temporary, focusedWindowChangeAllowed,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   302
                                           time, cause);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   303
90ce3da70b43 Initial load
duke
parents:
diff changeset
   304
        switch (result) {
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   305
          case XKeyboardFocusManagerPeer.SNFH_FAILURE:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   306
              return false;
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   307
          case XKeyboardFocusManagerPeer.SNFH_SUCCESS_PROCEED:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   308
              // Currently we just generate focus events like we deal with lightweight instead of calling
90ce3da70b43 Initial load
duke
parents:
diff changeset
   309
              // XSetInputFocus on native window
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   310
              if (focusLog.isLoggable(PlatformLogger.Level.FINER)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   311
                  focusLog.finer("Proceeding with request to " +
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   312
                                 lightweightChild + " in " + target);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   313
              }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   314
              /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   315
               * The problems with requests in non-focused window arise because shouldNativelyFocusHeavyweight
90ce3da70b43 Initial load
duke
parents:
diff changeset
   316
               * checks that native window is focused while appropriate WINDOW_GAINED_FOCUS has not yet
90ce3da70b43 Initial load
duke
parents:
diff changeset
   317
               * 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
   318
               * 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
   319
               * 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
   320
               * but store this component in mostRecent - and return true as before for compatibility.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   321
               */
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   322
              Window parentWindow = SunToolkit.getContainingWindow(target);
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   323
              if (parentWindow == null) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   324
                  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
   325
              }
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
   326
              XWindowPeer wpeer = AWTAccessor.getComponentAccessor()
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
   327
                                             .getPeer(parentWindow);
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   328
              if (wpeer == null) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   329
                  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
   330
              }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   331
              /*
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   332
               * 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
   333
               * 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
   334
               * See 6314575 for details.
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   335
               */
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   336
              boolean res = wpeer.requestWindowFocus(null);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   337
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   338
              if (focusLog.isLoggable(PlatformLogger.Level.FINER)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   339
                  focusLog.finer("Requested window focus: " + res);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   340
              }
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   341
              // 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
   342
              // 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
   343
              if (!(res && parentWindow.isFocused())) {
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   344
                  return rejectFocusRequestHelper("Waiting for asynchronous processing of the request");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   345
              }
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   346
              return XKeyboardFocusManagerPeer.deliverFocus(lightweightChild,
22584
eed64ee05369 8032733: Fix cast lint warnings in client libraries
darcy
parents: 22567
diff changeset
   347
                                                            target,
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   348
                                                            temporary,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   349
                                                            focusedWindowChangeAllowed,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   350
                                                            time, cause);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   351
              // Motif compatibility code
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   352
          case XKeyboardFocusManagerPeer.SNFH_SUCCESS_HANDLED:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   353
              // Either lightweight or excessive request - all events are generated.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   354
              return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   355
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   356
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   357
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   358
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   359
    private boolean rejectFocusRequestHelper(String logMsg) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   360
        if (focusLog.isLoggable(PlatformLogger.Level.FINER)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   361
            focusLog.finer(logMsg);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   362
        }
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   363
        XKeyboardFocusManagerPeer.removeLastFocusRequest(target);
442
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   364
        return false;
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   365
    }
687798d7d7b6 6522725: Component in a minimized Frame has focus and receives key events
ant
parents: 439
diff changeset
   366
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   367
    void handleJavaFocusEvent(AWTEvent e) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   368
        if (focusLog.isLoggable(PlatformLogger.Level.FINER)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   369
            focusLog.finer(e.toString());
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   370
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   371
        if (e.getID() == FocusEvent.FOCUS_GAINED) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   372
            focusGained((FocusEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   373
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   374
            focusLost((FocusEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   375
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   376
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   377
90ce3da70b43 Initial load
duke
parents:
diff changeset
   378
    void handleJavaWindowFocusEvent(AWTEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   379
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   380
90ce3da70b43 Initial load
duke
parents:
diff changeset
   381
    /*************************************************
90ce3da70b43 Initial load
duke
parents:
diff changeset
   382
     * END OF FOCUS STUFF
90ce3da70b43 Initial load
duke
parents:
diff changeset
   383
     *************************************************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   384
90ce3da70b43 Initial load
duke
parents:
diff changeset
   385
90ce3da70b43 Initial load
duke
parents:
diff changeset
   386
90ce3da70b43 Initial load
duke
parents:
diff changeset
   387
    public void setVisible(boolean b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   388
        xSetVisible(b);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   389
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   390
90ce3da70b43 Initial load
duke
parents:
diff changeset
   391
    public void hide() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   392
        setVisible(false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   393
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   394
90ce3da70b43 Initial load
duke
parents:
diff changeset
   395
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   396
     * @see java.awt.peer.ComponentPeer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   397
     */
12406
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   398
    public void setEnabled(final boolean value) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   399
        if (enableLog.isLoggable(PlatformLogger.Level.FINE)) {
12406
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   400
            enableLog.fine("{0}ing {1}", (value ? "Enabl" : "Disabl"), this);
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   401
        }
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   402
        boolean status = value;
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   403
        // If any of our heavyweight ancestors are disable, we should be too
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   404
        // See 6176875 for more information
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   405
        final Container cp = SunToolkit.getNativeContainer(target);
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
   406
        final ComponentAccessor acc = AWTAccessor.getComponentAccessor();
12406
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   407
        if (cp != null) {
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
   408
            status &= acc.<XComponentPeer>getPeer(cp).isEnabled();
12406
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   409
        }
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   410
        synchronized (getStateLock()) {
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   411
            if (enabled == status) {
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   412
                return;
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   413
            }
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   414
            enabled = status;
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   415
        }
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   416
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   417
        if (target instanceof Container) {
12406
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   418
            final Component[] list = ((Container) target).getComponents();
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   419
            for (final Component child : list) {
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
   420
                final ComponentPeer p = acc.getPeer(child);
12406
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   421
                if (p != null) {
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   422
                    p.setEnabled(status && child.isEnabled());
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   423
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   424
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   425
        }
12406
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   426
        repaint();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   427
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   428
90ce3da70b43 Initial load
duke
parents:
diff changeset
   429
    //
90ce3da70b43 Initial load
duke
parents:
diff changeset
   430
    // public so aw/Window can call it
90ce3da70b43 Initial load
duke
parents:
diff changeset
   431
    //
12406
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   432
    public final boolean isEnabled() {
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   433
        synchronized (getStateLock()) {
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   434
            return enabled;
fc209a5d3c85 7097771: setEnabled does not work for components in disabled containers.
serb
parents: 10871
diff changeset
   435
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   436
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   437
10096
f9ac9a52952d 6596915: JCK-runtime-6a/tests/api/java_awt/Component/index.html tesPaintAll fails
serb
parents: 9035
diff changeset
   438
    @Override
f9ac9a52952d 6596915: JCK-runtime-6a/tests/api/java_awt/Component/index.html tesPaintAll fails
serb
parents: 9035
diff changeset
   439
    public void paint(final Graphics g) {
f9ac9a52952d 6596915: JCK-runtime-6a/tests/api/java_awt/Component/index.html tesPaintAll fails
serb
parents: 9035
diff changeset
   440
        super.paint(g);
f9ac9a52952d 6596915: JCK-runtime-6a/tests/api/java_awt/Component/index.html tesPaintAll fails
serb
parents: 9035
diff changeset
   441
        // allow target to change the picture
f9ac9a52952d 6596915: JCK-runtime-6a/tests/api/java_awt/Component/index.html tesPaintAll fails
serb
parents: 9035
diff changeset
   442
        target.paint(g);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   443
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   444
90ce3da70b43 Initial load
duke
parents:
diff changeset
   445
    public Graphics getGraphics() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   446
        return getGraphics(surfaceData, getPeerForeground(), getPeerBackground(), getPeerFont());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   447
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   448
    public void print(Graphics g) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   449
        // clear rect here to emulate X clears rect before Expose
90ce3da70b43 Initial load
duke
parents:
diff changeset
   450
        g.setColor(target.getBackground());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   451
        g.fillRect(0, 0, target.getWidth(), target.getHeight());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   452
        g.setColor(target.getForeground());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   453
        // paint peer
10096
f9ac9a52952d 6596915: JCK-runtime-6a/tests/api/java_awt/Component/index.html tesPaintAll fails
serb
parents: 9035
diff changeset
   454
        paintPeer(g);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   455
        // allow target to change the picture
90ce3da70b43 Initial load
duke
parents:
diff changeset
   456
        target.print(g);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   457
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   458
90ce3da70b43 Initial load
duke
parents:
diff changeset
   459
    public void setBounds(int x, int y, int width, int height, int op) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   460
        this.x = x;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   461
        this.y = y;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   462
        this.width = width;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   463
        this.height = height;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   464
        xSetBounds(x,y,width,height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   465
        validateSurface();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   466
        layout();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   467
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   468
90ce3da70b43 Initial load
duke
parents:
diff changeset
   469
    public void reshape(int x, int y, int width, int height) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   470
        setBounds(x, y, width, height, SET_BOUNDS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   471
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   472
90ce3da70b43 Initial load
duke
parents:
diff changeset
   473
    public void coalescePaintEvent(PaintEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   474
        Rectangle r = e.getUpdateRect();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   475
        if (!(e instanceof IgnorePaintEvent)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   476
            paintArea.add(r, e.getID());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   477
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   478
        if (true) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   479
            switch(e.getID()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   480
              case PaintEvent.UPDATE:
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   481
                  if (log.isLoggable(PlatformLogger.Level.FINER)) {
10871
c0aeb0b14df1 7104625: sun.awt.X11.XEvent is creating 600 MB of char[] for no good reason
anthony
parents: 10096
diff changeset
   482
                      log.finer("XCP coalescePaintEvent : UPDATE : add : x = " +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   483
                            r.x + ", y = " + r.y + ", width = " + r.width + ",height = " + r.height);
10871
c0aeb0b14df1 7104625: sun.awt.X11.XEvent is creating 600 MB of char[] for no good reason
anthony
parents: 10096
diff changeset
   484
                  }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   485
                  return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   486
              case PaintEvent.PAINT:
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   487
                  if (log.isLoggable(PlatformLogger.Level.FINER)) {
10871
c0aeb0b14df1 7104625: sun.awt.X11.XEvent is creating 600 MB of char[] for no good reason
anthony
parents: 10096
diff changeset
   488
                      log.finer("XCP coalescePaintEvent : PAINT : add : x = " +
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   489
                            r.x + ", y = " + r.y + ", width = " + r.width + ",height = " + r.height);
10871
c0aeb0b14df1 7104625: sun.awt.X11.XEvent is creating 600 MB of char[] for no good reason
anthony
parents: 10096
diff changeset
   490
                  }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   491
                  return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   492
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   493
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   494
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   495
90ce3da70b43 Initial load
duke
parents:
diff changeset
   496
    XWindowPeer getParentTopLevel() {
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
   497
        ComponentAccessor compAccessor = AWTAccessor.getComponentAccessor();
4371
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4214
diff changeset
   498
        Container parent = (target instanceof Container) ? ((Container)target) : (compAccessor.getParent(target));
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   499
        // Search for parent window
90ce3da70b43 Initial load
duke
parents:
diff changeset
   500
        while (parent != null && !(parent instanceof Window)) {
4371
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4214
diff changeset
   501
            parent = compAccessor.getParent(parent);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   502
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   503
        if (parent != null) {
4371
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4214
diff changeset
   504
            return (XWindowPeer)compAccessor.getPeer(parent);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   505
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   506
            return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   507
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   508
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   509
90ce3da70b43 Initial load
duke
parents:
diff changeset
   510
    /* This method is intended to be over-ridden by peers to perform user interaction */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   511
    void handleJavaMouseEvent(MouseEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   512
        switch (e.getID()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   513
          case MouseEvent.MOUSE_PRESSED:
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   514
              if (target == e.getSource() &&
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   515
                  !target.isFocusOwner() &&
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   516
                  XKeyboardFocusManagerPeer.shouldFocusOnClick(target))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   517
              {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   518
                  XWindowPeer parentXWindow = getParentTopLevel();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   519
                  Window parentWindow = ((Window)parentXWindow.getTarget());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   520
                  // Simple windows are non-focusable in X terms but focusable in Java terms.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   521
                  // As X-non-focusable they don't receive any focus events - we should generate them
90ce3da70b43 Initial load
duke
parents:
diff changeset
   522
                  // by ourselfves.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   523
//                   if (parentXWindow.isFocusableWindow() /*&& parentXWindow.isSimpleWindow()*/ &&
90ce3da70b43 Initial load
duke
parents:
diff changeset
   524
//                       !(getCurrentNativeFocusedWindow() == parentWindow))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   525
//                   {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   526
//                       setCurrentNativeFocusedWindow(parentWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   527
//                       WindowEvent wfg = new WindowEvent(parentWindow, WindowEvent.WINDOW_GAINED_FOCUS);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   528
//                       parentWindow.dispatchEvent(wfg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   529
//                   }
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2462
diff changeset
   530
                  XKeyboardFocusManagerPeer.requestFocusFor(target, CausedFocusEvent.Cause.MOUSE_EVENT);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   531
              }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   532
              break;
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
    /* This method is intended to be over-ridden by peers to perform user interaction */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   537
    void handleJavaKeyEvent(KeyEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   538
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   539
90ce3da70b43 Initial load
duke
parents:
diff changeset
   540
    /* This method is intended to be over-ridden by peers to perform user interaction */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   541
    void handleJavaMouseWheelEvent(MouseWheelEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   542
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   543
90ce3da70b43 Initial load
duke
parents:
diff changeset
   544
90ce3da70b43 Initial load
duke
parents:
diff changeset
   545
    /* This method is intended to be over-ridden by peers to perform user interaction */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   546
    void handleJavaInputMethodEvent(InputMethodEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   547
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   548
90ce3da70b43 Initial load
duke
parents:
diff changeset
   549
    void handleF10JavaKeyEvent(KeyEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   550
        if (e.getID() == KeyEvent.KEY_PRESSED && e.getKeyCode() == KeyEvent.VK_F10) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   551
            XWindowPeer winPeer = this.getToplevelXWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   552
            if (winPeer instanceof XFramePeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   553
                XMenuBarPeer mPeer = ((XFramePeer)winPeer).getMenubarPeer();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   554
                if (mPeer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   555
                    mPeer.handleF10KeyPress(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   556
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   557
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   558
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   559
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   560
24191
75ee64f51cb4 8039861: Fix fallthrough lint warnings in awt
darcy
parents: 22584
diff changeset
   561
    @SuppressWarnings("fallthrough")
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   562
    public void handleEvent(java.awt.AWTEvent e) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   563
        if ((e instanceof InputEvent) && !((InputEvent)e).isConsumed() && target.isEnabled())  {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   564
            if (e instanceof MouseEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   565
                if (e instanceof MouseWheelEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   566
                    handleJavaMouseWheelEvent((MouseWheelEvent) e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   567
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   568
                else
90ce3da70b43 Initial load
duke
parents:
diff changeset
   569
                    handleJavaMouseEvent((MouseEvent) e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   570
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   571
            else if (e instanceof KeyEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   572
                handleF10JavaKeyEvent((KeyEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   573
                handleJavaKeyEvent((KeyEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   574
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   575
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   576
        else if (e instanceof KeyEvent && !((InputEvent)e).isConsumed()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   577
            // even if target is disabled.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   578
            handleF10JavaKeyEvent((KeyEvent)e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   579
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   580
        else if (e instanceof InputMethodEvent) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   581
            handleJavaInputMethodEvent((InputMethodEvent) e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   582
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   583
90ce3da70b43 Initial load
duke
parents:
diff changeset
   584
        int id = e.getID();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   585
90ce3da70b43 Initial load
duke
parents:
diff changeset
   586
        switch(id) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   587
          case PaintEvent.PAINT:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   588
              // Got native painting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   589
              paintPending = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   590
              // Fallthrough to next statement
90ce3da70b43 Initial load
duke
parents:
diff changeset
   591
          case PaintEvent.UPDATE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   592
              // Skip all painting while layouting and all UPDATEs
90ce3da70b43 Initial load
duke
parents:
diff changeset
   593
              // while waiting for native paint
90ce3da70b43 Initial load
duke
parents:
diff changeset
   594
              if (!isLayouting && !paintPending) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   595
                  paintArea.paint(target,false);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   596
              }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   597
              return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   598
          case FocusEvent.FOCUS_LOST:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   599
          case FocusEvent.FOCUS_GAINED:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   600
              handleJavaFocusEvent(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   601
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   602
          case WindowEvent.WINDOW_LOST_FOCUS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   603
          case WindowEvent.WINDOW_GAINED_FOCUS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   604
              handleJavaWindowFocusEvent(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   605
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   606
          default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
   607
              break;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   608
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   609
90ce3da70b43 Initial load
duke
parents:
diff changeset
   610
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   611
90ce3da70b43 Initial load
duke
parents:
diff changeset
   612
    public Dimension getMinimumSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   613
        return target.getSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   614
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   615
90ce3da70b43 Initial load
duke
parents:
diff changeset
   616
    public Dimension getPreferredSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   617
        return getMinimumSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   618
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   619
90ce3da70b43 Initial load
duke
parents:
diff changeset
   620
    public void layout() {}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   621
90ce3da70b43 Initial load
duke
parents:
diff changeset
   622
    void updateMotifColors(Color bg) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   623
        int red = bg.getRed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   624
        int green = bg.getGreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   625
        int blue = bg.getBlue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   626
90ce3da70b43 Initial load
duke
parents:
diff changeset
   627
        darkShadow = new Color(MotifColorUtilities.calculateBottomShadowFromBackground(red,green,blue));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   628
        lightShadow = new Color(MotifColorUtilities.calculateTopShadowFromBackground(red,green,blue));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   629
        selectColor= new Color(MotifColorUtilities.calculateSelectFromBackground(red,green,blue));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   630
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   631
90ce3da70b43 Initial load
duke
parents:
diff changeset
   632
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   633
     * Draw a 3D rectangle using the Motif colors.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   634
     * "Normal" rectangles have shadows on the bottom.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   635
     * "Depressed" rectangles (such as pressed buttons) have shadows on the top,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   636
     * in which case true should be passed for topShadow.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   637
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   638
    public void drawMotif3DRect(Graphics g,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   639
                                          int x, int y, int width, int height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   640
                                          boolean topShadow) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   641
        g.setColor(topShadow ? darkShadow : lightShadow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   642
        g.drawLine(x, y, x+width, y);       // top
90ce3da70b43 Initial load
duke
parents:
diff changeset
   643
        g.drawLine(x, y+height, x, y);      // left
90ce3da70b43 Initial load
duke
parents:
diff changeset
   644
90ce3da70b43 Initial load
duke
parents:
diff changeset
   645
        g.setColor(topShadow ? lightShadow : darkShadow );
90ce3da70b43 Initial load
duke
parents:
diff changeset
   646
        g.drawLine(x+1, y+height, x+width, y+height); // bottom
90ce3da70b43 Initial load
duke
parents:
diff changeset
   647
        g.drawLine(x+width, y+height, x+width, y+1);  // right
90ce3da70b43 Initial load
duke
parents:
diff changeset
   648
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   649
21270
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   650
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   651
    public void setBackground(Color c) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   652
        if (log.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   653
            log.fine("Set background to " + c);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   654
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   655
        synchronized (getStateLock()) {
21270
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   656
            if (Objects.equals(background, c)) {
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   657
                return;
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   658
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   659
            background = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   660
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   661
        super.setBackground(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   662
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   663
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   664
21270
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   665
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   666
    public void setForeground(Color c) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   667
        if (log.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   668
            log.fine("Set foreground to " + c);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   669
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   670
        synchronized (getStateLock()) {
21270
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   671
            if (Objects.equals(foreground, c)) {
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   672
                return;
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   673
            }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   674
            foreground = c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   675
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   676
        repaint();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   677
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   678
90ce3da70b43 Initial load
duke
parents:
diff changeset
   679
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   680
     * Gets the font metrics for the specified font.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   681
     * @param font the font for which font metrics is to be
90ce3da70b43 Initial load
duke
parents:
diff changeset
   682
     *      obtained
90ce3da70b43 Initial load
duke
parents:
diff changeset
   683
     * @return the font metrics for <code>font</code>
90ce3da70b43 Initial load
duke
parents:
diff changeset
   684
     * @see       #getFont
90ce3da70b43 Initial load
duke
parents:
diff changeset
   685
     * @see       java.awt.peer.ComponentPeer#getFontMetrics(Font)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   686
     * @see       Toolkit#getFontMetrics(Font)
24865
09b1d992ca72 8044740: Convert all JDK versions used in @since tag to 1.n[.n] in jdk repo
henryjen
parents: 24538
diff changeset
   687
     * @since     1.0
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   688
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   689
    public FontMetrics getFontMetrics(Font font) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
   690
        if (fontLog.isLoggable(PlatformLogger.Level.FINE)) {
16839
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   691
            fontLog.fine("Getting font metrics for " + font);
d0f2e97b7359 8010297: Missing isLoggable() checks in logging code
anthony
parents: 13652
diff changeset
   692
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   693
        return sun.font.FontDesignMetrics.getMetrics(font);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   694
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   695
21270
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   696
    @Override
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   697
    public void setFont(Font f) {
21270
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   698
        if (f == null) {
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   699
            f = XWindow.getDefaultFont();
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   700
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   701
        synchronized (getStateLock()) {
21270
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   702
            if (f.equals(font)) {
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   703
                return;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   704
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   705
            font = f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   706
        }
21278
ef8a3a2a72f2 8022746: List of spelling errors in API doc
malenkov
parents: 21270
diff changeset
   707
        // as it stands currently we don't need to do layout since
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   708
        // layout is done in the Component upon setFont.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   709
        //layout();
21270
8a0fc12b81a2 7090424: TestGlyphVectorLayout failed automately with java.lang.StackOverflowError
serb
parents: 20465
diff changeset
   710
        repaint();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   711
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   712
90ce3da70b43 Initial load
duke
parents:
diff changeset
   713
    public Font getFont() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   714
        return font;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   715
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   716
90ce3da70b43 Initial load
duke
parents:
diff changeset
   717
    public void updateCursorImmediately() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   718
        XGlobalCursorManager.getCursorManager().updateCursorImmediately();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   719
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   720
8133
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   721
    public final void pSetCursor(Cursor cursor) {
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   722
        this.pSetCursor(cursor, true);
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   723
    }
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   724
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   725
    /*
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   726
     * The method changes the cursor.
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   727
     * @param cursor - a new cursor to change to.
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   728
     * @param ignoreSubComponents - if {@code true} is passed then
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   729
     *                              the new cursor will be installed on window.
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   730
     *                              if {@code false} is passed then
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   731
     *                              subsequent components will try to handle
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   732
     *                              this request and install their cursor.
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   733
     */
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   734
    //ignoreSubComponents not used here
c7e4a02e928e 6431076: Cursor gets reset to text cursor in xawt TextArea when autoscrolling on append
dav
parents: 5506
diff changeset
   735
    public void pSetCursor(Cursor cursor, boolean ignoreSubComponents) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   736
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   737
        try {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   738
            long xcursor = XGlobalCursorManager.getCursor(cursor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   739
90ce3da70b43 Initial load
duke
parents:
diff changeset
   740
            XSetWindowAttributes xwa = new XSetWindowAttributes();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   741
            xwa.set_cursor(xcursor);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   742
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
   743
            long valuemask = XConstants.CWCursor;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   744
90ce3da70b43 Initial load
duke
parents:
diff changeset
   745
            XlibWrapper.XChangeWindowAttributes(XToolkit.getDisplay(),getWindow(),valuemask,xwa.pData);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   746
            XlibWrapper.XFlush(XToolkit.getDisplay());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   747
            xwa.dispose();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   748
        } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   749
            XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   750
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   751
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   752
90ce3da70b43 Initial load
duke
parents:
diff changeset
   753
    public Image createImage(ImageProducer producer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   754
        return new ToolkitImage(producer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   755
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   756
90ce3da70b43 Initial load
duke
parents:
diff changeset
   757
    public Image createImage(int width, int height) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   758
        return graphicsConfig.createAcceleratedImage(target, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   759
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   760
90ce3da70b43 Initial load
duke
parents:
diff changeset
   761
    public VolatileImage createVolatileImage(int width, int height) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   762
        return new SunVolatileImage(target, width, height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   763
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   764
90ce3da70b43 Initial load
duke
parents:
diff changeset
   765
    public boolean prepareImage(Image img, int w, int h, ImageObserver o) {
20465
b08b3909ee92 7081584: Specification for Window.isAlwaysOnTopSupported needs to be clarified
malenkov
parents: 18178
diff changeset
   766
        return Toolkit.getDefaultToolkit().prepareImage(img, w, h, o);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   767
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   768
90ce3da70b43 Initial load
duke
parents:
diff changeset
   769
    public int checkImage(Image img, int w, int h, ImageObserver o) {
20465
b08b3909ee92 7081584: Specification for Window.isAlwaysOnTopSupported needs to be clarified
malenkov
parents: 18178
diff changeset
   770
        return Toolkit.getDefaultToolkit().checkImage(img, w, h, o);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   771
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   772
90ce3da70b43 Initial load
duke
parents:
diff changeset
   773
    public Dimension preferredSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   774
        return getPreferredSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   775
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   776
90ce3da70b43 Initial load
duke
parents:
diff changeset
   777
    public Dimension minimumSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   778
        return getMinimumSize();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   779
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   780
90ce3da70b43 Initial load
duke
parents:
diff changeset
   781
    public Insets getInsets() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   782
        return new Insets(0, 0, 0, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   783
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   784
90ce3da70b43 Initial load
duke
parents:
diff changeset
   785
    public void beginValidate() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   786
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   787
90ce3da70b43 Initial load
duke
parents:
diff changeset
   788
    public void endValidate() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   789
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   790
90ce3da70b43 Initial load
duke
parents:
diff changeset
   791
90ce3da70b43 Initial load
duke
parents:
diff changeset
   792
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   793
     * DEPRECATED:  Replaced by getInsets().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   794
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   795
90ce3da70b43 Initial load
duke
parents:
diff changeset
   796
    public Insets insets() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   797
        return getInsets();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   798
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   799
90ce3da70b43 Initial load
duke
parents:
diff changeset
   800
    // Returns true if we are inside begin/endLayout and
90ce3da70b43 Initial load
duke
parents:
diff changeset
   801
    // are waiting for native painting
90ce3da70b43 Initial load
duke
parents:
diff changeset
   802
    public boolean isPaintPending() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   803
        return paintPending && isLayouting;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   804
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   805
90ce3da70b43 Initial load
duke
parents:
diff changeset
   806
    public boolean handlesWheelScrolling() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   807
        return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   808
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   809
90ce3da70b43 Initial load
duke
parents:
diff changeset
   810
    public void beginLayout() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   811
        // Skip all painting till endLayout
90ce3da70b43 Initial load
duke
parents:
diff changeset
   812
        isLayouting = true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   813
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 endLayout() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   817
        if (!paintPending && !paintArea.isEmpty()
4371
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4214
diff changeset
   818
            && !AWTAccessor.getComponentAccessor().getIgnoreRepaint(target))
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   819
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   820
            // if not waiting for native painting repaint damaged area
90ce3da70b43 Initial load
duke
parents:
diff changeset
   821
            postEvent(new PaintEvent(target, PaintEvent.PAINT,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   822
                                     new Rectangle()));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   823
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   824
        isLayouting = false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   825
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   826
90ce3da70b43 Initial load
duke
parents:
diff changeset
   827
    public Color getWinBackground() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   828
        return getPeerBackground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   829
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   830
90ce3da70b43 Initial load
duke
parents:
diff changeset
   831
    static int[] getRGBvals(Color c) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   832
90ce3da70b43 Initial load
duke
parents:
diff changeset
   833
        int rgbvals[] = new int[3];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   834
90ce3da70b43 Initial load
duke
parents:
diff changeset
   835
        rgbvals[0] = c.getRed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   836
        rgbvals[1] = c.getGreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   837
        rgbvals[2] = c.getBlue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   838
90ce3da70b43 Initial load
duke
parents:
diff changeset
   839
        return rgbvals;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   840
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   841
90ce3da70b43 Initial load
duke
parents:
diff changeset
   842
    static final int BACKGROUND_COLOR = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   843
    static final int HIGHLIGHT_COLOR = 1;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   844
    static final int SHADOW_COLOR = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   845
    static final int FOREGROUND_COLOR = 3;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   846
90ce3da70b43 Initial load
duke
parents:
diff changeset
   847
    public Color[] getGUIcolors() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   848
        Color c[] = new Color[4];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   849
        float backb, highb, shadowb, hue, saturation;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   850
        c[BACKGROUND_COLOR] = getWinBackground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   851
        if (c[BACKGROUND_COLOR] == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   852
            c[BACKGROUND_COLOR] = super.getWinBackground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   853
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   854
        if (c[BACKGROUND_COLOR] == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   855
            c[BACKGROUND_COLOR] = Color.lightGray;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   856
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   857
90ce3da70b43 Initial load
duke
parents:
diff changeset
   858
        int[] rgb = getRGBvals(c[BACKGROUND_COLOR]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   859
90ce3da70b43 Initial load
duke
parents:
diff changeset
   860
        float[] hsb = Color.RGBtoHSB(rgb[0],rgb[1],rgb[2],null);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   861
90ce3da70b43 Initial load
duke
parents:
diff changeset
   862
        hue = hsb[0];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   863
        saturation = hsb[1];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   864
        backb = hsb[2];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   865
90ce3da70b43 Initial load
duke
parents:
diff changeset
   866
90ce3da70b43 Initial load
duke
parents:
diff changeset
   867
/*      Calculate Highlight Brightness  */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   868
90ce3da70b43 Initial load
duke
parents:
diff changeset
   869
        highb = backb + 0.2f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   870
        shadowb = backb - 0.4f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   871
        if ((highb > 1.0) ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   872
            if  ((1.0 - backb) < 0.05) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   873
                highb = shadowb + 0.25f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   874
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   875
                highb = 1.0f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   876
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   877
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   878
            if (shadowb < 0.0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   879
                if ((backb - 0.0) < 0.25) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   880
                    highb = backb + 0.75f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   881
                    shadowb = highb - 0.2f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   882
                } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   883
                    shadowb = 0.0f;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   884
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   885
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   886
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   887
        c[HIGHLIGHT_COLOR] = Color.getHSBColor(hue,saturation,highb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   888
        c[SHADOW_COLOR] = Color.getHSBColor(hue,saturation,shadowb);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   889
90ce3da70b43 Initial load
duke
parents:
diff changeset
   890
90ce3da70b43 Initial load
duke
parents:
diff changeset
   891
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   892
  c[SHADOW_COLOR] = c[BACKGROUND_COLOR].darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   893
  int r2 = c[SHADOW_COLOR].getRed();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   894
  int g2 = c[SHADOW_COLOR].getGreen();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   895
  int b2 = c[SHADOW_COLOR].getBlue();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   896
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   897
90ce3da70b43 Initial load
duke
parents:
diff changeset
   898
        c[FOREGROUND_COLOR] = getPeerForeground();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   899
        if (c[FOREGROUND_COLOR] == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   900
            c[FOREGROUND_COLOR] = Color.black;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   901
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   902
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   903
  if ((c[BACKGROUND_COLOR].equals(c[HIGHLIGHT_COLOR]))
90ce3da70b43 Initial load
duke
parents:
diff changeset
   904
  && (c[BACKGROUND_COLOR].equals(c[SHADOW_COLOR]))) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   905
  c[SHADOW_COLOR] = new Color(c[BACKGROUND_COLOR].getRed() + 75,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   906
  c[BACKGROUND_COLOR].getGreen() + 75,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   907
  c[BACKGROUND_COLOR].getBlue() + 75);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   908
  c[HIGHLIGHT_COLOR] = c[SHADOW_COLOR].brighter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   909
  } else if (c[BACKGROUND_COLOR].equals(c[HIGHLIGHT_COLOR])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   910
  c[HIGHLIGHT_COLOR] = c[SHADOW_COLOR];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   911
  c[SHADOW_COLOR] = c[SHADOW_COLOR].darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   912
  }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   913
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
   914
        if (! isEnabled()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   915
            c[BACKGROUND_COLOR] = c[BACKGROUND_COLOR].darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   916
            // Reduce the contrast
90ce3da70b43 Initial load
duke
parents:
diff changeset
   917
            // Calculate the NTSC gray (NB: REC709 L* might be better!)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   918
            // for foreground and background; then multiply the foreground
90ce3da70b43 Initial load
duke
parents:
diff changeset
   919
            // by the average lightness
90ce3da70b43 Initial load
duke
parents:
diff changeset
   920
90ce3da70b43 Initial load
duke
parents:
diff changeset
   921
90ce3da70b43 Initial load
duke
parents:
diff changeset
   922
            Color tc = c[BACKGROUND_COLOR];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   923
            int bg = tc.getRed() * 30 + tc.getGreen() * 59 + tc.getBlue() * 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   924
90ce3da70b43 Initial load
duke
parents:
diff changeset
   925
            tc = c[FOREGROUND_COLOR];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   926
            int fg = tc.getRed() * 30 + tc.getGreen() * 59 + tc.getBlue() * 11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   927
90ce3da70b43 Initial load
duke
parents:
diff changeset
   928
            float ave = (float) ((fg + bg) / 51000.0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   929
            // 255 * 100 * 2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   930
90ce3da70b43 Initial load
duke
parents:
diff changeset
   931
            Color newForeground = new Color((int) (tc.getRed() * ave),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   932
                                            (int) (tc.getGreen() * ave),
90ce3da70b43 Initial load
duke
parents:
diff changeset
   933
                                            (int) (tc.getBlue() * ave));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   934
90ce3da70b43 Initial load
duke
parents:
diff changeset
   935
            if (newForeground.equals(c[FOREGROUND_COLOR])) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   936
                // This probably means the foreground color is black or white
90ce3da70b43 Initial load
duke
parents:
diff changeset
   937
                newForeground = new Color(ave, ave, ave);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   938
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   939
            c[FOREGROUND_COLOR] = newForeground;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   940
90ce3da70b43 Initial load
duke
parents:
diff changeset
   941
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   942
90ce3da70b43 Initial load
duke
parents:
diff changeset
   943
90ce3da70b43 Initial load
duke
parents:
diff changeset
   944
        return c;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   945
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   946
90ce3da70b43 Initial load
duke
parents:
diff changeset
   947
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   948
     * Returns an array of Colors similar to getGUIcolors(), but using the
90ce3da70b43 Initial load
duke
parents:
diff changeset
   949
     * System colors.  This is useful if pieces of a Component (such as
90ce3da70b43 Initial load
duke
parents:
diff changeset
   950
     * the integrated scrollbars of a List) should retain the System color
90ce3da70b43 Initial load
duke
parents:
diff changeset
   951
     * instead of the background color set by Component.setBackground().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   952
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   953
    static Color[] getSystemColors() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   954
        if (systemColors == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   955
            systemColors = new Color[4];
90ce3da70b43 Initial load
duke
parents:
diff changeset
   956
            systemColors[BACKGROUND_COLOR] = SystemColor.window;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   957
            systemColors[HIGHLIGHT_COLOR] = SystemColor.controlLtHighlight;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   958
            systemColors[SHADOW_COLOR] = SystemColor.controlShadow;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   959
            systemColors[FOREGROUND_COLOR] = SystemColor.windowText;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   960
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   961
        return systemColors;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   962
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   963
90ce3da70b43 Initial load
duke
parents:
diff changeset
   964
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
   965
     * Draw a 3D oval.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   966
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   967
    public void draw3DOval(Graphics g, Color colors[],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   968
                           int x, int y, int w, int h, boolean raised)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   969
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   970
        Color c = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   971
        g.setColor(raised ? colors[HIGHLIGHT_COLOR] : colors[SHADOW_COLOR]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   972
        g.drawArc(x, y, w, h, 45, 180);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   973
        g.setColor(raised ? colors[SHADOW_COLOR] : colors[HIGHLIGHT_COLOR]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   974
        g.drawArc(x, y, w, h, 225, 180);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   975
        g.setColor(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   976
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   977
90ce3da70b43 Initial load
duke
parents:
diff changeset
   978
    public void draw3DRect(Graphics g, Color colors[],
90ce3da70b43 Initial load
duke
parents:
diff changeset
   979
                           int x, int y, int width, int height, boolean raised)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   980
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   981
            Color c = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   982
            g.setColor(raised ? colors[HIGHLIGHT_COLOR] : colors[SHADOW_COLOR]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   983
            g.drawLine(x, y, x, y + height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   984
            g.drawLine(x + 1, y, x + width - 1, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   985
            g.setColor(raised ? colors[SHADOW_COLOR] : colors[HIGHLIGHT_COLOR]);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   986
            g.drawLine(x + 1, y + height, x + width, y + height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   987
            g.drawLine(x + width, y, x + width, y + height - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   988
            g.setColor(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   989
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   990
90ce3da70b43 Initial load
duke
parents:
diff changeset
   991
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   992
     * drawXXX() methods are used to print the native components by
90ce3da70b43 Initial load
duke
parents:
diff changeset
   993
     * rendering the Motif look ourselves.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   994
     * ToDo(aim): needs to query native motif for more accurate color
90ce3da70b43 Initial load
duke
parents:
diff changeset
   995
     * information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   996
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   997
    void draw3DOval(Graphics g, Color bg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   998
                    int x, int y, int w, int h, boolean raised)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   999
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1000
            Color c = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1001
            Color shadow = bg.darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1002
            Color highlight = bg.brighter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1003
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1004
            g.setColor(raised ? highlight : shadow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1005
            g.drawArc(x, y, w, h, 45, 180);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1006
            g.setColor(raised ? shadow : highlight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1007
            g.drawArc(x, y, w, h, 225, 180);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1008
            g.setColor(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1009
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1010
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1011
    void draw3DRect(Graphics g, Color bg,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1012
                    int x, int y, int width, int height,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1013
                    boolean raised) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1014
        Color c = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1015
        Color shadow = bg.darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1016
        Color highlight = bg.brighter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1017
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1018
        g.setColor(raised ? highlight : shadow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1019
        g.drawLine(x, y, x, y + height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1020
        g.drawLine(x + 1, y, x + width - 1, y);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1021
        g.setColor(raised ? shadow : highlight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1022
        g.drawLine(x + 1, y + height, x + width, y + height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1023
        g.drawLine(x + width, y, x + width, y + height - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1024
        g.setColor(c);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1025
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1026
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1027
    void drawScrollbar(Graphics g, Color bg, int thickness, int length,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1028
               int min, int max, int val, int vis, boolean horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1029
        Color c = g.getColor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1030
        double f = (double)(length - 2*(thickness-1)) / Math.max(1, ((max - min) + vis));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1031
        int v1 = thickness + (int)(f * (val - min));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1032
        int v2 = (int)(f * vis);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1033
        int w2 = thickness-4;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1034
        int tpts_x[] = new int[3];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1035
        int tpts_y[] = new int[3];
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1036
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1037
        if (length < 3*w2 ) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1038
            v1 = v2 = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1039
            if (length < 2*w2 + 2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1040
                w2 = (length-2)/2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1041
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1042
        } else  if (v2 < 7) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1043
            // enforce a minimum handle size
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1044
            v1 = Math.max(0, v1 - ((7 - v2)>>1));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1045
            v2 = 7;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1046
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1047
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1048
        int ctr   = thickness/2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1049
        int sbmin = ctr - w2/2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1050
        int sbmax = ctr + w2/2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1051
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1052
        // paint the background slightly darker
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1053
        {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1054
            Color d = new Color((int) (bg.getRed()   * 0.85),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1055
                                (int) (bg.getGreen() * 0.85),
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1056
                                (int) (bg.getBlue()  * 0.85));
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1057
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1058
            g.setColor(d);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1059
            if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1060
                g.fillRect(0, 0, length, thickness);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1061
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1062
                g.fillRect(0, 0, thickness, length);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1063
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1064
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1065
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1066
        // paint the thumb and arrows in the normal background color
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1067
        g.setColor(bg);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1068
        if (v1 > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1069
            if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1070
                g.fillRect(v1, 3, v2, thickness-3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1071
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1072
                g.fillRect(3, v1, thickness-3, v2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1073
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1074
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1075
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1076
        tpts_x[0] = ctr;    tpts_y[0] = 2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1077
        tpts_x[1] = sbmin;  tpts_y[1] = w2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1078
        tpts_x[2] = sbmax;  tpts_y[2] = w2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1079
        if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1080
            g.fillPolygon(tpts_y, tpts_x, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1081
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1082
            g.fillPolygon(tpts_x, tpts_y, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1083
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1084
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1085
        tpts_y[0] = length-2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1086
        tpts_y[1] = length-w2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1087
        tpts_y[2] = length-w2;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1088
        if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1089
            g.fillPolygon(tpts_y, tpts_x, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1090
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1091
            g.fillPolygon(tpts_x, tpts_y, 3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1092
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1093
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1094
        Color highlight = bg.brighter();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1095
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1096
        // // // // draw the "highlighted" edges
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1097
        g.setColor(highlight);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1098
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1099
        // outline & arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1100
        if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1101
            g.drawLine(1, thickness, length - 1, thickness);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1102
            g.drawLine(length - 1, 1, length - 1, thickness);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1103
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1104
            // arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1105
            g.drawLine(1, ctr, w2, sbmin);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1106
            g.drawLine(length - w2, sbmin, length - w2, sbmax);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1107
            g.drawLine(length - w2, sbmin, length - 2, ctr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1108
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1109
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1110
            g.drawLine(thickness, 1, thickness, length - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1111
            g.drawLine(1, length - 1, thickness, length - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1112
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1113
            // arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1114
            g.drawLine(ctr, 1, sbmin, w2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1115
            g.drawLine(sbmin, length - w2, sbmax, length - w2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1116
            g.drawLine(sbmin, length - w2, ctr, length - 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1117
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1118
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1119
        // thumb
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1120
        if (v1 > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1121
            if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1122
                g.drawLine(v1, 2, v1 + v2, 2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1123
                g.drawLine(v1, 2, v1, thickness-3);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1124
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1125
                g.drawLine(2, v1, 2, v1 + v2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1126
                g.drawLine(2, v1, thickness-3, v1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1127
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1128
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1129
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1130
        Color shadow = bg.darker();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1131
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1132
        // // // // draw the "shadowed" edges
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1133
        g.setColor(shadow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1134
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1135
        // outline && arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1136
        if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1137
            g.drawLine(0, 0, 0, thickness);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1138
            g.drawLine(0, 0, length - 1, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1139
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1140
            // arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1141
            g.drawLine(w2, sbmin, w2, sbmax);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1142
            g.drawLine(w2, sbmax, 1, ctr);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1143
            g.drawLine(length-2, ctr, length-w2, sbmax);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1144
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1145
        } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1146
            g.drawLine(0, 0, thickness, 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1147
            g.drawLine(0, 0, 0, length - 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1148
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1149
            // arrows
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1150
            g.drawLine(sbmin, w2, sbmax, w2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1151
            g.drawLine(sbmax, w2, ctr, 1);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1152
            g.drawLine(ctr, length-2, sbmax, length-w2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1153
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1154
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1155
        // thumb
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1156
        if (v1 > 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1157
            if (horizontal) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1158
                g.drawLine(v1 + v2, 2, v1 + v2, thickness-2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1159
                g.drawLine(v1, thickness-2, v1 + v2, thickness-2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1160
            } else {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1161
                g.drawLine(2, v1 + v2, thickness-2, v1 + v2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1162
                g.drawLine(thickness-2, v1, thickness-2, v1 + v2);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1163
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1164
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1165
        g.setColor(c);
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
     * The following multibuffering-related methods delegate to our
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1170
     * associated GraphicsConfig (X11 or GLX) to handle the appropriate
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1171
     * native windowing system specific actions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1172
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1173
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1174
    private BufferCapabilities backBufferCaps;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1175
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1176
    public void createBuffers(int numBuffers, BufferCapabilities caps)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1177
      throws AWTException
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1178
    {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
  1179
        if (buffersLog.isLoggable(PlatformLogger.Level.FINE)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1180
            buffersLog.fine("createBuffers(" + numBuffers + ", " + caps + ")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1181
        }
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1182
        // set the caps first, they're used when creating the bb
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1183
        backBufferCaps = caps;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1184
        backBuffer = graphicsConfig.createBackBuffer(this, numBuffers, caps);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1185
        xBackBuffer = graphicsConfig.createBackBufferImage(target,
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1186
                                                           backBuffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1187
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1188
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1189
    @Override
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1190
    public BufferCapabilities getBackBufferCaps() {
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1191
        return backBufferCaps;
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1192
    }
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1193
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1194
    public void flip(int x1, int y1, int x2, int y2,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1195
                     BufferCapabilities.FlipContents flipAction)
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1196
    {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
  1197
        if (buffersLog.isLoggable(PlatformLogger.Level.FINE)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1198
            buffersLog.fine("flip(" + flipAction + ")");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1199
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1200
        if (backBuffer == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1201
            throw new IllegalStateException("Buffers have not been created");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1202
        }
887
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1203
        graphicsConfig.flip(this, target, xBackBuffer,
0aab8d3fa11a 6725214: D3D: forward-port the new pipeline from 6u10
tdv
parents: 442
diff changeset
  1204
                            x1, y1, x2, y2, flipAction);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1205
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1206
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1207
    public Image getBackBuffer() {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
  1208
        if (buffersLog.isLoggable(PlatformLogger.Level.FINE)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1209
            buffersLog.fine("getBackBuffer()");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1210
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1211
        if (backBuffer == 0) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1212
            throw new IllegalStateException("Buffers have not been created");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1213
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1214
        return xBackBuffer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1215
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1216
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1217
    public void destroyBuffers() {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
  1218
        if (buffersLog.isLoggable(PlatformLogger.Level.FINE)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1219
            buffersLog.fine("destroyBuffers()");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1220
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1221
        graphicsConfig.destroyBackBuffer(backBuffer);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1222
        backBuffer = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1223
        xBackBuffer = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1224
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1225
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1226
    // End of multi-buffering
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1227
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1228
    public void notifyTextComponentChange(boolean add){
4371
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4214
diff changeset
  1229
        Container parent = AWTAccessor.getComponentAccessor().getParent(target);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1230
        while(!(parent == null ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1231
                parent instanceof java.awt.Frame ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1232
                parent instanceof java.awt.Dialog)) {
4371
dc9dcb8b0ae7 6823138: Need to replace ComponentAccessor with AWTAccessor
dcherepanov
parents: 4214
diff changeset
  1233
            parent = AWTAccessor.getComponentAccessor().getParent(parent);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1234
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1235
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1236
/*      FIX ME - FIX ME need to implement InputMethods
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1237
    if (parent instanceof java.awt.Frame ||
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1238
        parent instanceof java.awt.Dialog) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1239
        if (add)
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1240
        ((MInputMethodControl)parent.getPeer()).addTextComponent((MComponentPeer)this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1241
        else
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1242
        ((MInputMethodControl)parent.getPeer()).removeTextComponent((MComponentPeer)this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1243
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1244
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1245
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1246
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1247
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1248
     * Returns true if this event is disabled and shouldn't be processed by window
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1249
     * Currently if target component is disabled the following event will be disabled on window:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1250
     * ButtonPress, ButtonRelease, KeyPress, KeyRelease, EnterNotify, LeaveNotify, MotionNotify
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1251
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1252
    protected boolean isEventDisabled(XEvent e) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
  1253
        if (enableLog.isLoggable(PlatformLogger.Level.FINEST)) {
10871
c0aeb0b14df1 7104625: sun.awt.X11.XEvent is creating 600 MB of char[] for no good reason
anthony
parents: 10096
diff changeset
  1254
            enableLog.finest("Component is {1}, checking for disabled event {0}", e, (isEnabled()?"enabled":"disable"));
c0aeb0b14df1 7104625: sun.awt.X11.XEvent is creating 600 MB of char[] for no good reason
anthony
parents: 10096
diff changeset
  1255
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1256
        if (!isEnabled()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1257
            switch (e.get_type()) {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1258
              case XConstants.ButtonPress:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1259
              case XConstants.ButtonRelease:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1260
              case XConstants.KeyPress:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1261
              case XConstants.KeyRelease:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1262
              case XConstants.EnterNotify:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1263
              case XConstants.LeaveNotify:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1264
              case XConstants.MotionNotify:
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
  1265
                  if (enableLog.isLoggable(PlatformLogger.Level.FINER)) {
10871
c0aeb0b14df1 7104625: sun.awt.X11.XEvent is creating 600 MB of char[] for no good reason
anthony
parents: 10096
diff changeset
  1266
                      enableLog.finer("Event {0} is disable", e);
c0aeb0b14df1 7104625: sun.awt.X11.XEvent is creating 600 MB of char[] for no good reason
anthony
parents: 10096
diff changeset
  1267
                  }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1268
                  return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1269
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1270
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1271
        switch(e.get_type()) {
439
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1272
          case XConstants.MapNotify:
3488710b02f8 6623459: Get rid of XConstant, XProtocolConstants and XUtilConstants antipattern
dav
parents: 116
diff changeset
  1273
          case XConstants.UnmapNotify:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1274
              return true;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1275
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1276
        return super.isEventDisabled(e);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1277
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1278
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1279
    Color getPeerBackground() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1280
        return background;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1281
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1282
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1283
    Color getPeerForeground() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1284
        return foreground;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1285
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1286
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1287
    Font getPeerFont() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1288
        return font;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1289
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1290
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1291
    Dimension getPeerSize() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1292
        return new Dimension(width,height);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1293
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1294
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1295
    public void setBoundsOperation(int operation) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1296
        synchronized(getStateLock()) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1297
            if (boundsOperation == DEFAULT_OPERATION) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1298
                boundsOperation = operation;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1299
            } else if (operation == RESET_OPERATION) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1300
                boundsOperation = DEFAULT_OPERATION;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1301
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1302
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1303
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1304
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1305
    static String operationToString(int operation) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1306
        switch (operation) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1307
          case SET_LOCATION:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1308
              return "SET_LOCATION";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1309
          case SET_SIZE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1310
              return "SET_SIZE";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1311
          case SET_CLIENT_SIZE:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1312
              return "SET_CLIENT_SIZE";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1313
          default:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1314
          case SET_BOUNDS:
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1315
              return "SET_BOUNDS";
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1316
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1317
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1318
2462
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1319
    /**
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1320
     * Lowers this component at the bottom of the above HW peer. If the above parameter
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1321
     * is null then the method places this component at the top of the Z-order.
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1322
     */
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1323
    public void setZOrder(ComponentPeer above) {
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1324
        long aboveWindow = (above != null) ? ((XComponentPeer)above).getWindow() : 0;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1325
2462
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1326
        XToolkit.awtLock();
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1327
        try{
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1328
            XlibWrapper.SetZOrder(XToolkit.getDisplay(), getWindow(), aboveWindow);
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1329
        }finally{
192552ca8292 6809227: poor performance on Panel.Add() method in jdk6
dcherepanov
parents: 2459
diff changeset
  1330
            XToolkit.awtUnlock();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1331
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1332
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1333
24538
25bf8153fbfe 8039642: Fix raw and unchecked warnings in sun.awt.*
henryjen
parents: 24191
diff changeset
  1334
    private void addTree(Collection<Long> order, Set<Long> set, Container cont) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1335
        for (int i = 0; i < cont.getComponentCount(); i++) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1336
            Component comp = cont.getComponent(i);
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
  1337
            Object peer = AWTAccessor.getComponentAccessor().getPeer(comp);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1338
            if (peer instanceof XComponentPeer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1339
                Long window = Long.valueOf(((XComponentPeer)peer).getWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1340
                if (!set.contains(window)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1341
                    set.add(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1342
                    order.add(window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1343
                }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1344
            } else if (comp instanceof Container) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1345
                // It is lightweight container, it might contain heavyweight components attached to this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1346
                // peer
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1347
                addTree(order, set, (Container)comp);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1348
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1349
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1350
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1351
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1352
    /****** DropTargetPeer implementation ********************/
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1353
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1354
    public void addDropTarget(DropTarget dt) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1355
        Component comp = target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1356
        while(!(comp == null || comp instanceof Window)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1357
            comp = comp.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1358
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1359
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1360
        if (comp instanceof Window) {
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
  1361
            XWindowPeer wpeer = AWTAccessor.getComponentAccessor().getPeer(comp);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1362
            if (wpeer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1363
                wpeer.addDropTarget();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1364
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1365
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1366
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1367
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1368
    public void removeDropTarget(DropTarget dt) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1369
        Component comp = target;
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1370
        while(!(comp == null || comp instanceof Window)) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1371
            comp = comp.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1372
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1373
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1374
        if (comp instanceof Window) {
30469
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
  1375
            XWindowPeer wpeer = AWTAccessor.getComponentAccessor()
bac0a7ff7e1e 8074028: Remove API references to java.awt.peer
serb
parents: 28231
diff changeset
  1376
                                           .getPeer(comp);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1377
            if (wpeer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1378
                wpeer.removeDropTarget();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1379
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1380
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1381
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1382
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1383
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1384
     * Applies the shape to the X-window.
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1385
     * @since 1.7
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1386
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1387
    public void applyShape(Region shape) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1388
        if (XlibUtil.isShapingSupported()) {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
  1389
            if (shapeLog.isLoggable(PlatformLogger.Level.FINER)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1390
                shapeLog.finer(
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1391
                        "*** INFO: Setting shape: PEER: " + this
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1392
                        + "; WINDOW: " + getWindow()
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1393
                        + "; TARGET: " + target
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1394
                        + "; SHAPE: " + shape);
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1395
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1396
            XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1397
            try {
1978
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1398
                if (shape != null) {
34395
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 32865
diff changeset
  1399
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 32865
diff changeset
  1400
                    int scale = getScale();
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 32865
diff changeset
  1401
                    if (scale != 1) {
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 32865
diff changeset
  1402
                        shape = shape.getScaledRegion(scale, scale);
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 32865
diff changeset
  1403
                    }
2ac7e99f7f4a 8137571: Linux HiDPI Graphics support
alexsch
parents: 32865
diff changeset
  1404
1978
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1405
                    XlibWrapper.SetRectangularShape(
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1406
                            XToolkit.getDisplay(),
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1407
                            getWindow(),
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1408
                            shape.getLoX(), shape.getLoY(),
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1409
                            shape.getHiX(), shape.getHiY(),
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1410
                            (shape.isRectangular() ? null : shape)
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1411
                            );
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1412
                } else {
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1413
                    XlibWrapper.SetRectangularShape(
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1414
                            XToolkit.getDisplay(),
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1415
                            getWindow(),
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1416
                            0, 0,
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1417
                            0, 0,
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1418
                            null
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1419
                            );
8b981ce05cd0 6797195: Forward-port enhancements for hw/lw mixing from 6u12 to 7
anthony
parents: 887
diff changeset
  1420
                }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1421
            } finally {
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1422
                XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1423
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1424
        } else {
18178
ee71c923891d 8016747: Replace deprecated PlatformLogger isLoggable(int) with isLoggable(Level)
chegar
parents: 16843
diff changeset
  1425
            if (shapeLog.isLoggable(PlatformLogger.Level.FINER)) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1426
                shapeLog.finer("*** WARNING: Shaping is NOT supported!");
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1427
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1428
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1429
    }
2459
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2458
diff changeset
  1430
2805
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1431
    public boolean updateGraphicsData(GraphicsConfiguration gc) {
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1432
        int oldVisual = -1, newVisual = -1;
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1433
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1434
        if (graphicsConfig != null) {
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1435
            oldVisual = graphicsConfig.getVisual();
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1436
        }
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1437
        if (gc != null && gc instanceof X11GraphicsConfig) {
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1438
            newVisual = ((X11GraphicsConfig)gc).getVisual();
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1439
        }
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1440
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1441
        // If the new visual differs from the old one, the peer must be
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1442
        // recreated because X11 does not allow changing the visual on the fly.
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1443
        // So we even skip the initGraphicsConfiguration() call.
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1444
        // The initial assignment should happen though, hence the != -1 thing.
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1445
        if (oldVisual != -1 && oldVisual != newVisual) {
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1446
            return true;
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1447
        }
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1448
2459
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2458
diff changeset
  1449
        initGraphicsConfiguration();
2805
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1450
        doValidateSurface();
9f18d7e66042 6812298: Dynamic GraphicsConfig changes don't work on X11 platforms
anthony
parents: 2464
diff changeset
  1451
        return false;
2459
08f3416ff334 6804747: Ensure consistent graphicsConfig member across components hierarchy
anthony
parents: 2458
diff changeset
  1452
    }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
  1453
}