jdk/src/share/classes/javax/swing/DefaultFocusManager.java
author lana
Thu, 26 Dec 2013 12:04:16 -0800
changeset 23010 6dadb192ad81
parent 20455 f6f9a0c2796b
child 23697 e556a715949f
permissions -rw-r--r--
8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013 Summary: updated files with 2011, 2012 and 2013 years according to the file's last updated date Reviewed-by: tbell, lancea, chegar
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
23010
6dadb192ad81 8029235: Update copyright year to match last edit in jdk8 jdk repository for 2013
lana
parents: 20455
diff changeset
     2
 * Copyright (c) 1997, 2013, 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: 1639
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: 1639
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: 1639
diff changeset
    21
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
diff changeset
    22
 * or visit www.oracle.com if you need additional information or have any
202f599c92aa 6943119: Rebrand source copyright notices
ohair
parents: 1639
diff changeset
    23
 * questions.
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
package javax.swing;
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.Container;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.FocusTraversalPolicy;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.util.Comparator;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
 * This class has been obsoleted by the 1.4 focus APIs. While client code may
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
 * still use this class, developers are strongly encouraged to use
90ce3da70b43 Initial load
duke
parents:
diff changeset
    36
 * <code>java.awt.KeyboardFocusManager</code> and
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
 * <code>java.awt.DefaultKeyboardFocusManager</code> instead.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
 * <p>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Please see
20455
f6f9a0c2796b 8020688: Broken links in documentation at http://docs.oracle.com/javase/6/docs/api/index.
mcherkas
parents: 5506
diff changeset
    40
 * <a href="http://docs.oracle.com/javase/tutorial/uiswing/misc/focus.html">
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * How to Use the Focus Subsystem</a>,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 * a section in <em>The Java Tutorial</em>, and the
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
 * <a href="../../java/awt/doc-files/FocusSpec.html">Focus Specification</a>
90ce3da70b43 Initial load
duke
parents:
diff changeset
    44
 * for more information.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
 * @author Arnaud Weber
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
 * @author David Mendenhall
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
public class DefaultFocusManager extends FocusManager {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
    final FocusTraversalPolicy gluePolicy =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
        new LegacyGlueFocusTraversalPolicy(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
    private final FocusTraversalPolicy layoutPolicy =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
        new LegacyLayoutFocusTraversalPolicy(this);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
    private final LayoutComparator comparator =
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        new LayoutComparator();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
    public DefaultFocusManager() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
        setDefaultFocusTraversalPolicy(gluePolicy);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
    public Component getComponentAfter(Container aContainer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
                                       Component aComponent)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
        Container root = (aContainer.isFocusCycleRoot())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
            ? aContainer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
            : aContainer.getFocusCycleRootAncestor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        // Support for mixed 1.4/pre-1.4 focus APIs. If a particular root's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        // traversal policy is non-legacy, then honor it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
        if (root != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
            FocusTraversalPolicy policy = root.getFocusTraversalPolicy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
            if (policy != gluePolicy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
                return policy.getComponentAfter(root, aComponent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
            comparator.setComponentOrientation(root.getComponentOrientation());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
            return layoutPolicy.getComponentAfter(root, aComponent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
    public Component getComponentBefore(Container aContainer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
                                        Component aComponent)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
    {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
        Container root = (aContainer.isFocusCycleRoot())
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
            ? aContainer
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
            : aContainer.getFocusCycleRootAncestor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
        // Support for mixed 1.4/pre-1.4 focus APIs. If a particular root's
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
        // traversal policy is non-legacy, then honor it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
        if (root != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
            FocusTraversalPolicy policy = root.getFocusTraversalPolicy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
            if (policy != gluePolicy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
                return policy.getComponentBefore(root, aComponent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
            comparator.setComponentOrientation(root.getComponentOrientation());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
            return layoutPolicy.getComponentBefore(root, aComponent);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   105
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
    public Component getFirstComponent(Container aContainer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        Container root = (aContainer.isFocusCycleRoot())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            ? aContainer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            : aContainer.getFocusCycleRootAncestor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
90ce3da70b43 Initial load
duke
parents:
diff changeset
   111
        // Support for mixed 1.4/pre-1.4 focus APIs. If a particular root's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
        // traversal policy is non-legacy, then honor it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        if (root != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            FocusTraversalPolicy policy = root.getFocusTraversalPolicy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
            if (policy != gluePolicy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
                return policy.getFirstComponent(root);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
            comparator.setComponentOrientation(root.getComponentOrientation());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
            return layoutPolicy.getFirstComponent(root);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    public Component getLastComponent(Container aContainer) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
        Container root = (aContainer.isFocusCycleRoot())
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
            ? aContainer
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
            : aContainer.getFocusCycleRootAncestor();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
        // Support for mixed 1.4/pre-1.4 focus APIs. If a particular root's
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
        // traversal policy is non-legacy, then honor it.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        if (root != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
            FocusTraversalPolicy policy = root.getFocusTraversalPolicy();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
            if (policy != gluePolicy) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
                return policy.getLastComponent(root);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
            }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
            comparator.setComponentOrientation(root.getComponentOrientation());
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
            return layoutPolicy.getLastComponent(root);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
    public boolean compareTabOrder(Component a, Component b) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
        return (comparator.compare(a, b) < 0);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   149
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   150
90ce3da70b43 Initial load
duke
parents:
diff changeset
   151
final class LegacyLayoutFocusTraversalPolicy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   152
    extends LayoutFocusTraversalPolicy
90ce3da70b43 Initial load
duke
parents:
diff changeset
   153
{
90ce3da70b43 Initial load
duke
parents:
diff changeset
   154
    LegacyLayoutFocusTraversalPolicy(DefaultFocusManager defaultFocusManager) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   155
        super(new CompareTabOrderComparator(defaultFocusManager));
90ce3da70b43 Initial load
duke
parents:
diff changeset
   156
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   157
}
90ce3da70b43 Initial load
duke
parents:
diff changeset
   158
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
   159
final class CompareTabOrderComparator implements Comparator<Component> {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   160
    private final DefaultFocusManager defaultFocusManager;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   161
90ce3da70b43 Initial load
duke
parents:
diff changeset
   162
    CompareTabOrderComparator(DefaultFocusManager defaultFocusManager) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   163
        this.defaultFocusManager = defaultFocusManager;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   164
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   165
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
   166
    public int compare(Component o1, Component o2) {
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   167
        if (o1 == o2) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   168
            return 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   169
        }
1301
15e81207e1f2 6727662: Code improvement and warnings removing from swing packages
rupashka
parents: 2
diff changeset
   170
        return (defaultFocusManager.compareTabOrder(o1, o2)) ? -1 : 1;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   171
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   172
}