jdk/src/java.desktop/share/classes/sun/awt/LightweightFrame.java
author chegar
Sun, 17 Aug 2014 15:54:13 +0100
changeset 25859 3317bb8137f4
parent 25195 jdk/src/share/classes/sun/awt/LightweightFrame.java@9de77f5b0df2
child 26353 b5e3b7fbf56d
permissions -rw-r--r--
8054834: Modular Source Code Reviewed-by: alanb, chegar, ihse, mduigou Contributed-by: alan.bateman@oracle.com, alex.buckley@oracle.com, chris.hegarty@oracle.com, erik.joelsson@oracle.com, jonathan.gibbons@oracle.com, karen.kinnear@oracle.com, magnus.ihse.bursie@oracle.com, mandy.chung@oracle.com, mark.reinhold@oracle.com, paul.sandoz@oracle.com
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
15983
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
     1
/*
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
     2
 * Copyright (c) 2013, Oracle and/or its affiliates. All rights reserved.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
     4
 *
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Oracle designates this
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
     9
 * by Oracle in the LICENSE file that accompanied this code.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    10
 *
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    11
 * This code is distributed in the hope that it will be useful, but WITHOUT
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    12
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    13
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    14
 * version 2 for more details (a copy is included in the LICENSE file that
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    15
 * accompanied this code).
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    16
 *
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    17
 * You should have received a copy of the GNU General Public License version
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    18
 * 2 along with this work; if not, write to the Free Software Foundation,
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    19
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    20
 *
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    23
 * questions.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    24
 */
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    25
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    26
package sun.awt;
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    27
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    28
import java.awt.Container;
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    29
import java.awt.Frame;
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    30
import java.awt.Graphics;
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    31
import java.awt.Image;
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    32
import java.awt.MenuBar;
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    33
import java.awt.MenuComponent;
25195
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
    34
import java.awt.Rectangle;
15983
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    35
import java.awt.Toolkit;
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    36
import java.awt.peer.FramePeer;
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    37
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    38
/**
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    39
 * The class provides basic functionality for a lightweight frame
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    40
 * implementation. A subclass is expected to provide painting to an
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    41
 * offscreen image and access to it. Thus it can be used for lightweight
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    42
 * embedding.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    43
 *
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    44
 * @author Artem Ananiev
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    45
 * @author Anton Tarasov
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    46
 */
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    47
@SuppressWarnings("serial")
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    48
public abstract class LightweightFrame extends Frame {
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    49
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    50
    /**
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    51
     * Constructs a new, initially invisible {@code LightweightFrame}
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    52
     * instance.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    53
     */
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    54
    public LightweightFrame() {
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    55
        setUndecorated(true);
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    56
        setResizable(true);
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    57
        setEnabled(true);
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    58
    }
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    59
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    60
    /**
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    61
     * Blocks introspection of a parent window by this child.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    62
     *
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    63
     * @return null
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    64
     */
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    65
    @Override public final Container getParent() { return null; }
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    66
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    67
    @Override public Graphics getGraphics() { return null; }
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    68
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    69
    @Override public final boolean isResizable() { return true; }
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    70
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    71
    // Block modification of any frame attributes, since they aren't
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    72
    // applicable for a lightweight frame.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    73
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    74
    @Override public final void setTitle(String title) {}
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    75
    @Override public final void setIconImage(Image image) {}
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    76
    @Override public final void setIconImages(java.util.List<? extends Image> icons) {}
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    77
    @Override public final void setMenuBar(MenuBar mb) {}
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    78
    @Override public final void setResizable(boolean resizable) {}
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    79
    @Override public final void remove(MenuComponent m) {}
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    80
    @Override public final void toFront() {}
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    81
    @Override public final void toBack() {}
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    82
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    83
    @Override public void addNotify() {
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    84
        synchronized (getTreeLock()) {
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    85
            if (getPeer() == null) {
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    86
                SunToolkit stk = (SunToolkit)Toolkit.getDefaultToolkit();
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    87
                try {
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    88
                    setPeer(stk.createLightweightFrame(this));
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    89
                } catch (Exception e) {
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    90
                    throw new RuntimeException(e);
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    91
                }
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    92
            }
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    93
            super.addNotify();
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    94
        }
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    95
    }
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    96
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    97
    private void setPeer(final FramePeer p) {
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    98
        AWTAccessor.getComponentAccessor().setPeer(this, p);
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
    99
    }
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   100
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   101
    /**
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   102
     * Requests the peer to emulate activation or deactivation of the
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   103
     * frame. Peers should override this method if they are to implement
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   104
     * this functionality.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   105
     *
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   106
     * @param activate if <code>true</code>, activates the frame;
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   107
     *                 otherwise, deactivates the frame
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   108
     */
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   109
    public void emulateActivation(boolean activate) {
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   110
        ((FramePeer)getPeer()).emulateActivation(activate);
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   111
    }
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   112
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   113
    /**
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   114
     * Delegates the focus grab action to the client (embedding) application.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   115
     * The method is called by the AWT grab machinery.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   116
     *
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   117
     * @see SunToolkit#grab(java.awt.Window)
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   118
     */
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   119
    public abstract void grabFocus();
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   120
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   121
    /**
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   122
     * Delegates the focus ungrab action to the client (embedding) application.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   123
     * The method is called by the AWT grab machinery.
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   124
     *
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   125
     * @see SunToolkit#ungrab(java.awt.Window)
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   126
     */
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   127
    public abstract void ungrabFocus();
25195
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   128
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   129
    /**
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   130
     * Returns the scale factor of this frame. The default value is 1.
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   131
     *
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   132
     * @return the scale factor
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   133
     * @see #notifyDisplayChanged(int)
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   134
     */
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   135
    public abstract int getScaleFactor();
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   136
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   137
    /**
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   138
     * Called when display of the hosted frame is changed.
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   139
     *
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   140
     * @param scaleFactor the scale factor
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   141
     */
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   142
    public abstract void notifyDisplayChanged(int scaleFactor);
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   143
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   144
    /**
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   145
     * Host window absolute bounds.
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   146
     */
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   147
    private int hostX, hostY, hostW, hostH;
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   148
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   149
    /**
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   150
     * Returns the absolute bounds of the host (embedding) window.
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   151
     *
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   152
     * @return the host window bounds
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   153
     */
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   154
    public Rectangle getHostBounds() {
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   155
        if (hostX == 0 && hostY == 0 && hostW == 0 && hostH == 0) {
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   156
            // The client app is probably unaware of the setHostBounds.
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   157
            // A safe fall-back:
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   158
            return getBounds();
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   159
        }
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   160
        return new Rectangle(hostX, hostY, hostW, hostH);
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   161
    }
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   162
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   163
    /**
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   164
     * Sets the absolute bounds of the host (embedding) window.
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   165
     */
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   166
    public void setHostBounds(int x, int y, int w, int h) {
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   167
        hostX = x;
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   168
        hostY = y;
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   169
        hostW = w;
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   170
        hostH = h;
9de77f5b0df2 8029455: [JLightweightFrame] support scaled painting
serb
parents: 15983
diff changeset
   171
    }
15983
26a673dec5b2 8006406: lightweight embedding in other Java UI toolkits
ant
parents:
diff changeset
   172
}