blob: 5d5da7d97d5d85661bc4345806eacc792a7c6bcc [file] [log] [blame]
J. Duke319a3b92007-12-01 00:00:00 +00001/*
2 * Copyright 1997-2003 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. Sun designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Sun in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 * CA 95054 USA or visit www.sun.com if you need additional information or
23 * have any questions.
24 */
25package javax.swing.text;
26
27import java.awt.event.ActionEvent;
28import java.awt.KeyboardFocusManager;
29import java.awt.Component;
30import java.util.Hashtable;
31import java.util.Enumeration;
32import javax.swing.Action;
33import javax.swing.AbstractAction;
34import javax.swing.KeyStroke;
35
36/**
37 * An Action implementation useful for key bindings that are
38 * shared across a number of different text components. Because
39 * the action is shared, it must have a way of getting it's
40 * target to act upon. This class provides support to try and
41 * find a text component to operate on. The preferred way of
42 * getting the component to act upon is through the ActionEvent
43 * that is received. If the Object returned by getSource can
44 * be narrowed to a text component, it will be used. If the
45 * action event is null or can't be narrowed, the last focused
46 * text component is tried. This is determined by being
47 * used in conjunction with a JTextController which
48 * arranges to share that information with a TextAction.
49 * <p>
50 * <strong>Warning:</strong>
51 * Serialized objects of this class will not be compatible with
52 * future Swing releases. The current serialization support is
53 * appropriate for short term storage or RMI between applications running
54 * the same version of Swing. As of 1.4, support for long term storage
55 * of all JavaBeans<sup><font size="-2">TM</font></sup>
56 * has been added to the <code>java.beans</code> package.
57 * Please see {@link java.beans.XMLEncoder}.
58 *
59 * @author Timothy Prinzing
60 */
61public abstract class TextAction extends AbstractAction {
62
63 /**
64 * Creates a new JTextAction object.
65 *
66 * @param name the name of the action
67 */
68 public TextAction(String name) {
69 super(name);
70 }
71
72 /**
73 * Determines the component to use for the action.
74 * This if fetched from the source of the ActionEvent
75 * if it's not null and can be narrowed. Otherwise,
76 * the last focused component is used.
77 *
78 * @param e the ActionEvent
79 * @return the component
80 */
81 protected final JTextComponent getTextComponent(ActionEvent e) {
82 if (e != null) {
83 Object o = e.getSource();
84 if (o instanceof JTextComponent) {
85 return (JTextComponent) o;
86 }
87 }
88 return getFocusedComponent();
89 }
90
91 /**
92 * Takes one list of
93 * commands and augments it with another list
94 * of commands. The second list takes precedence
95 * over the first list; that is, when both lists
96 * contain a command with the same name, the command
97 * from the second list is used.
98 *
99 * @param list1 the first list, may be empty but not
100 * <code>null</code>
101 * @param list2 the second list, may be empty but not
102 * <code>null</code>
103 * @return the augmented list
104 */
105 public static final Action[] augmentList(Action[] list1, Action[] list2) {
106 Hashtable h = new Hashtable();
107 for (int i = 0; i < list1.length; i++) {
108 Action a = list1[i];
109 String value = (String)a.getValue(Action.NAME);
110 h.put((value!=null ? value:""), a);
111 }
112 for (int i = 0; i < list2.length; i++) {
113 Action a = list2[i];
114 String value = (String)a.getValue(Action.NAME);
115 h.put((value!=null ? value:""), a);
116 }
117 Action[] actions = new Action[h.size()];
118 int index = 0;
119 for (Enumeration e = h.elements() ; e.hasMoreElements() ;) {
120 actions[index++] = (Action) e.nextElement();
121 }
122 return actions;
123 }
124
125 /**
126 * Fetches the text component that currently has focus.
127 * This allows actions to be shared across text components
128 * which is useful for key-bindings where a large set of
129 * actions are defined, but generally used the same way
130 * across many different components.
131 *
132 * @return the component
133 */
134 protected final JTextComponent getFocusedComponent() {
135 return JTextComponent.getFocusedComponent();
136 }
137}