01: /*
02: * Copyright (C) 2004 TiongHiang Lee
03: *
04: * This library is free software; you can redistribute it and/or
05: * modify it under the terms of the GNU Lesser General Public
06: * License as published by the Free Software Foundation; either
07: * version 2.1 of the License, or (at your option) any later version.
08: *
09: * This library is distributed in the hope that it will be useful,
10: * but WITHOUT ANY WARRANTY; without even the implied warranty of
11: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12: * Lesser General Public License for more details.
13: *
14: * You should have received a copy of the GNU Lesser General Public
15: * License along with this library; if not, write to the Free Software
16: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17: *
18: * Email: thlee@onemindsoft.org
19: */
20:
21: package org.onemind.swingweb.mapinput.peerdelegate.javax.swing;
22:
23: import java.awt.AWTEvent;
24: import java.awt.ActiveEvent;
25: import java.awt.event.ActionEvent;
26: import javax.swing.JTextField;
27: import javax.swing.text.JTextComponent;
28: import org.onemind.awtbridge.event.BridgeEventQueue;
29: import org.onemind.awtbridge.input.BridgeInputContext;
30: import org.onemind.awtbridge.peer.BridgePeer;
31: import org.onemind.swingweb.mapinput.peerdelegate.MapInputDelegate;
32: import org.onemind.swingweb.mapinput.peerdelegate.javax.swing.text.JTextComponentInputDelegate;
33:
34: /**
35: * THe JTextField input delegate
36: * @author TiongHiang Lee (thlee@onemindsoft.org)
37: *
38: */
39: public class JTextFieldInputDelegate extends
40: JTextComponentInputDelegate {
41:
42: /** the instance **/
43: public static MapInputDelegate INSTANCE = new JTextFieldInputDelegate();
44:
45: protected static class TextActionEvent extends AWTEvent implements
46: ActiveEvent {
47:
48: public TextActionEvent(Object source, int id) {
49: super (source, id);
50: }
51:
52: public void dispatch() {
53: JTextField field = (JTextField) getSource();
54: field.postActionEvent();
55: }
56: }
57:
58: /**
59: * {@inheritDoc}
60: */
61: protected void createEvent(BridgeInputContext context,
62: BridgePeer peer, JTextComponent com) {
63: super .createEvent(context, peer, com);
64: postEvent(context, new TextActionEvent(com,
65: ActionEvent.ACTION_PERFORMED),
66: BridgeEventQueue.HIGH_PRIORITY);
67: }
68: }
|