01: /*
02: * Copyright 1997-2003 Sun Microsystems, Inc. All Rights Reserved.
03: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
04: *
05: * This code is free software; you can redistribute it and/or modify it
06: * under the terms of the GNU General Public License version 2 only, as
07: * published by the Free Software Foundation. Sun designates this
08: * particular file as subject to the "Classpath" exception as provided
09: * 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: */
25:
26: package sun.awt.motif;
27:
28: import sun.awt.motif.MComponentPeer;
29: import sun.awt.motif.MInputMethod;
30:
31: /**
32: * An interface for controlling containment hierarchy configuration to
33: * keep track of existence of any TextArea or TextField and to manage
34: * input method status area.
35: *
36: * @version 1.17 05/05/07
37: * @auther JavaSoft International
38: */
39: interface MInputMethodControl {
40:
41: /**
42: * Informs Frame or Dialog that a text component has been added to
43: * the hierarchy.
44: * @param textComponentPeer peer of the text component
45: */
46: void addTextComponent(MComponentPeer textComponentPeer);
47:
48: /**
49: * Informs Frame or Dialog that a text component has been removed
50: * from the hierarchy.
51: * @param textComponentPeer peer of the text component
52: */
53: void removeTextComponent(MComponentPeer textComponentPeer);
54:
55: /**
56: * Returns a text component peer in the containment hierarchy
57: * to obtain the Motif status area information
58: */
59: MComponentPeer getTextComponent();
60:
61: /**
62: * Inform Frame or Dialog that an MInputMethod has been
63: * constructed so that Frame and Dialog can invoke the method in
64: * MInputMethod to reconfigure XICs.
65: * @param inputMethod an MInputMethod instance
66: */
67: void addInputMethod(MInputMethod inputMethod);
68:
69: /**
70: * Inform Frame or Dialog that an X11InputMethod is being destroyed.
71: * @param inputMethod an X11InputMethod instance
72: */
73: void removeInputMethod(MInputMethod inputMethod);
74: }
|