jdk/src/share/classes/sun/awt/KeyboardFocusManagerPeerImpl.java
author malenkov
Tue, 05 Feb 2013 20:07:54 +0400
changeset 16892 24a521782b42
parent 13652 42544e68dc39
child 16839 d0f2e97b7359
permissions -rw-r--r--
8006790: Improve checking for windows Reviewed-by: art, mschoene
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
5506
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3938
diff changeset
     2
 * Copyright (c) 2003, 2009, 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: 3938
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: 3938
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: 3938
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3938
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 3938
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package sun.awt;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
import java.awt.Component;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.KeyboardFocusManager;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.Window;
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    30
import java.awt.Canvas;
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    31
import java.awt.Scrollbar;
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    32
import java.awt.Panel;
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    33
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    34
import java.awt.event.FocusEvent;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
import java.awt.peer.KeyboardFocusManagerPeer;
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    37
import java.awt.peer.ComponentPeer;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
import java.lang.reflect.InvocationTargetException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
import java.lang.reflect.Method;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2464
diff changeset
    42
import sun.util.logging.PlatformLogger;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    44
public abstract class KeyboardFocusManagerPeerImpl implements KeyboardFocusManagerPeer {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    45
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2464
diff changeset
    46
    private static final PlatformLogger focusLog = PlatformLogger.getLogger("sun.awt.focus.KeyboardFocusManagerPeerImpl");
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    47
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    48
    private static AWTAccessor.KeyboardFocusManagerAccessor kfmAccessor =
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    49
        AWTAccessor.getKeyboardFocusManagerAccessor();
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    51
    // The constants are copied from java.awt.KeyboardFocusManager
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    52
    public static final int SNFH_FAILURE         = 0;
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    53
    public static final int SNFH_SUCCESS_HANDLED = 1;
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    54
    public static final int SNFH_SUCCESS_PROCEED = 2;
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    55
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    56
    @Override
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    57
    public void clearGlobalFocusOwner(Window activeWindow) {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    58
        if (activeWindow != null) {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    59
            Component focusOwner = activeWindow.getFocusOwner();
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2464
diff changeset
    60
            if (focusLog.isLoggable(PlatformLogger.FINE))
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2464
diff changeset
    61
                focusLog.fine("Clearing global focus owner " + focusOwner);
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    62
            if (focusOwner != null) {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    63
                FocusEvent fl = new CausedFocusEvent(focusOwner, FocusEvent.FOCUS_LOST, false, null,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    64
                                                     CausedFocusEvent.Cause.CLEAR_GLOBAL_FOCUS_OWNER);
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    65
                SunToolkit.postPriorityEvent(fl);
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    66
            }
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    67
        }
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    70
    /*
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    71
     * WARNING: Don't call it on the Toolkit thread.
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    72
     *
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    73
     * Checks if the component:
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    74
     * 1) accepts focus on click (in general)
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    75
     * 2) may be a focus owner (in particular)
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    76
     */
11264
54f2f4c6bd30 7117008: Warnings cleanup day: reduce number of javac warnings in the sun.awt package
art
parents: 5506
diff changeset
    77
    @SuppressWarnings("deprecation")
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    78
    public static boolean shouldFocusOnClick(Component component) {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    79
        boolean acceptFocusOnClick = false;
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    80
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    81
        // A component is generally allowed to accept focus on click
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    82
        // if its peer is focusable. There're some exceptions though.
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    83
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    84
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    85
        // CANVAS & SCROLLBAR accept focus on click
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    86
        if (component instanceof Canvas ||
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    87
            component instanceof Scrollbar)
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    88
        {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    89
            acceptFocusOnClick = true;
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    90
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    91
        // PANEL, empty only, accepts focus on click
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    92
        } else if (component instanceof Panel) {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    93
            acceptFocusOnClick = (((Panel)component).getComponentCount() == 0);
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    94
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    95
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    96
        // Other components
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    97
        } else {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    98
            ComponentPeer peer = (component != null ? component.getPeer() : null);
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
    99
            acceptFocusOnClick = (peer != null ? peer.isFocusable() : false);
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   100
        }
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   101
        return acceptFocusOnClick &&
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   102
               AWTAccessor.getComponentAccessor().canBeFocusOwner(component);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   105
    /*
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   106
     * Posts proper lost/gain focus events to the event queue.
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   107
     */
11264
54f2f4c6bd30 7117008: Warnings cleanup day: reduce number of javac warnings in the sun.awt package
art
parents: 5506
diff changeset
   108
    @SuppressWarnings("deprecation")
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   109
    public static boolean deliverFocus(Component lightweightChild,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   110
                                       Component target,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   111
                                       boolean temporary,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   112
                                       boolean focusedWindowChangeAllowed,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   113
                                       long time,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   114
                                       CausedFocusEvent.Cause cause,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   115
                                       Component currentFocusOwner) // provided by the descendant peers
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   116
    {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   117
        if (lightweightChild == null) {
11264
54f2f4c6bd30 7117008: Warnings cleanup day: reduce number of javac warnings in the sun.awt package
art
parents: 5506
diff changeset
   118
            lightweightChild = target;
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   119
        }
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   120
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   121
        Component currentOwner = currentFocusOwner;
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   122
        if (currentOwner != null && currentOwner.getPeer() == null) {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   123
            currentOwner = null;
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   124
        }
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   125
        if (currentOwner != null) {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   126
            FocusEvent fl = new CausedFocusEvent(currentOwner, FocusEvent.FOCUS_LOST,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   127
                                                 false, lightweightChild, cause);
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   128
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2464
diff changeset
   129
            if (focusLog.isLoggable(PlatformLogger.FINER))
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2464
diff changeset
   130
                focusLog.finer("Posting focus event: " + fl);
13652
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 13648
diff changeset
   131
            SunToolkit.postEvent(SunToolkit.targetToAppContext(currentOwner), fl);
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   132
        }
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   133
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   134
        FocusEvent fg = new CausedFocusEvent(lightweightChild, FocusEvent.FOCUS_GAINED,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   135
                                             false, currentOwner, cause);
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   136
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2464
diff changeset
   137
        if (focusLog.isLoggable(PlatformLogger.FINER))
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2464
diff changeset
   138
            focusLog.finer("Posting focus event: " + fg);
13652
42544e68dc39 6981400: Tabbing between textfield do not work properly when ALT+TAB
ant
parents: 13648
diff changeset
   139
        SunToolkit.postEvent(SunToolkit.targetToAppContext(lightweightChild), fg);
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   140
        return true;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   143
    // WARNING: Don't call it on the Toolkit thread.
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   144
    public static boolean requestFocusFor(Component target, CausedFocusEvent.Cause cause) {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   145
        return AWTAccessor.getComponentAccessor().requestFocus(target, cause);
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   146
    }
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   147
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   148
    // WARNING: Don't call it on the Toolkit thread.
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   149
    public static int shouldNativelyFocusHeavyweight(Component heavyweight,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   150
                                                     Component descendant,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   151
                                                     boolean temporary,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   152
                                                     boolean focusedWindowChangeAllowed,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   153
                                                     long time,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   154
                                                     CausedFocusEvent.Cause cause)
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   155
    {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   156
        return kfmAccessor.shouldNativelyFocusHeavyweight(
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   157
            heavyweight, descendant, temporary, focusedWindowChangeAllowed, time, cause);
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   158
    }
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   159
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    public static void removeLastFocusRequest(Component heavyweight) {
2464
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   161
        kfmAccessor.removeLastFocusRequest(heavyweight);
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   162
    }
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   163
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   164
    // WARNING: Don't call it on the Toolkit thread.
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   165
    public static boolean processSynchronousLightweightTransfer(Component heavyweight,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   166
                                                                Component descendant,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   167
                                                                boolean temporary,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   168
                                                                boolean focusedWindowChangeAllowed,
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   169
                                                                long time)
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   170
    {
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   171
        return kfmAccessor.processSynchronousLightweightTransfer(
3c6755bdc55f 6806217: implement synthetic focus model for MS Windows
ant
parents: 2
diff changeset
   172
            heavyweight, descendant, temporary, focusedWindowChangeAllowed, time);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   173
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   174
}