jdk/src/solaris/classes/sun/awt/X11/XInputMethod.java
author mchung
Tue, 29 Sep 2009 16:03:03 -0700
changeset 3938 ef327bd847c0
parent 2 90ce3da70b43
child 4214 0fa32d38146b
permissions -rw-r--r--
6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes Summary: Replace calls to Logger with sun.util.logging.PlatformLogger Reviewed-by: prr, art, alexp, dcherepanov, igor, dav, anthony
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
     1
/*
90ce3da70b43 Initial load
duke
parents:
diff changeset
     2
 * Copyright 2003 Sun Microsystems, Inc.  All Rights Reserved.
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
90ce3da70b43 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.  Sun designates this
90ce3da70b43 Initial load
duke
parents:
diff changeset
     8
 * particular file as subject to the "Classpath" exception as provided
90ce3da70b43 Initial load
duke
parents:
diff changeset
     9
 * by Sun in the LICENSE file that accompanied this code.
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
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    21
 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    22
 * CA 95054 USA or visit www.sun.com if you need additional information or
90ce3da70b43 Initial load
duke
parents:
diff changeset
    23
 * have any questions.
90ce3da70b43 Initial load
duke
parents:
diff changeset
    24
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    25
90ce3da70b43 Initial load
duke
parents:
diff changeset
    26
package sun.awt.X11;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    27
90ce3da70b43 Initial load
duke
parents:
diff changeset
    28
import java.awt.AWTException;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    29
import java.awt.Component;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    30
import java.awt.Container;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    31
import java.awt.Rectangle;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    32
import java.awt.im.spi.InputMethodContext;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    33
import java.awt.peer.ComponentPeer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    34
import sun.awt.X11InputMethod;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    35
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2
diff changeset
    36
import sun.util.logging.PlatformLogger;
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    37
90ce3da70b43 Initial load
duke
parents:
diff changeset
    38
/**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    39
 * Input Method Adapter for XIM (without Motif)
90ce3da70b43 Initial load
duke
parents:
diff changeset
    40
 *
90ce3da70b43 Initial load
duke
parents:
diff changeset
    41
 * @author JavaSoft International
90ce3da70b43 Initial load
duke
parents:
diff changeset
    42
 */
90ce3da70b43 Initial load
duke
parents:
diff changeset
    43
public class XInputMethod extends X11InputMethod {
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2
diff changeset
    44
    private static final PlatformLogger log = PlatformLogger.getLogger("sun.awt.X11.XInputMethod");
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
    45
90ce3da70b43 Initial load
duke
parents:
diff changeset
    46
    public XInputMethod() throws AWTException {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    47
        super();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    48
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    49
90ce3da70b43 Initial load
duke
parents:
diff changeset
    50
    public void setInputMethodContext(InputMethodContext context) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    51
        context.enableClientWindowNotification(this, true);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    52
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    53
90ce3da70b43 Initial load
duke
parents:
diff changeset
    54
    public void notifyClientWindowChange(Rectangle location) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    55
        XComponentPeer peer = (XComponentPeer)getPeer(clientComponentWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    56
        if (peer != null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    57
            adjustStatusWindow(peer.getContentWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    58
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    59
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    60
90ce3da70b43 Initial load
duke
parents:
diff changeset
    61
    protected boolean openXIM() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    62
        return openXIMNative(XToolkit.getDisplay());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    63
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    64
90ce3da70b43 Initial load
duke
parents:
diff changeset
    65
    protected boolean createXIC() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    66
        XComponentPeer peer = (XComponentPeer)getPeer(clientComponentWindow);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    67
        if (peer == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    68
            return false;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    69
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    70
        return createXICNative(peer.getContentWindow());
90ce3da70b43 Initial load
duke
parents:
diff changeset
    71
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    72
90ce3da70b43 Initial load
duke
parents:
diff changeset
    73
90ce3da70b43 Initial load
duke
parents:
diff changeset
    74
    private static volatile long xicFocus = 0;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    75
90ce3da70b43 Initial load
duke
parents:
diff changeset
    76
    protected void setXICFocus(ComponentPeer peer,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    77
                                    boolean value, boolean active) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    78
        if (peer == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    79
            return;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    80
        }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    81
        xicFocus = ((XComponentPeer)peer).getContentWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    82
        setXICFocusNative(((XComponentPeer)peer).getContentWindow(),
90ce3da70b43 Initial load
duke
parents:
diff changeset
    83
                          value,
90ce3da70b43 Initial load
duke
parents:
diff changeset
    84
                          active);
90ce3da70b43 Initial load
duke
parents:
diff changeset
    85
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    86
90ce3da70b43 Initial load
duke
parents:
diff changeset
    87
    public static long getXICFocus() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    88
        return xicFocus;
90ce3da70b43 Initial load
duke
parents:
diff changeset
    89
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    90
90ce3da70b43 Initial load
duke
parents:
diff changeset
    91
/* XAWT_HACK  FIX ME!
90ce3da70b43 Initial load
duke
parents:
diff changeset
    92
   do NOT call client code!
90ce3da70b43 Initial load
duke
parents:
diff changeset
    93
*/
90ce3da70b43 Initial load
duke
parents:
diff changeset
    94
    protected Container getParent(Component client) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
    95
        return client.getParent();
90ce3da70b43 Initial load
duke
parents:
diff changeset
    96
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
    97
90ce3da70b43 Initial load
duke
parents:
diff changeset
    98
    /**
90ce3da70b43 Initial load
duke
parents:
diff changeset
    99
     * Returns peer of the given client component. If the given client component
90ce3da70b43 Initial load
duke
parents:
diff changeset
   100
     * doesn't have peer, peer of the native container of the client is returned.
90ce3da70b43 Initial load
duke
parents:
diff changeset
   101
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   102
    protected ComponentPeer getPeer(Component client) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   103
        XComponentPeer peer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   104
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2
diff changeset
   105
        if (log.isLoggable(PlatformLogger.FINE)) log.fine("Client is " + client);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   106
        peer = (XComponentPeer)XToolkit.targetToPeer(client);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   107
        while (client != null && peer == null) {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   108
            client = getParent(client);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   109
            peer = (XComponentPeer)XToolkit.targetToPeer(client);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   110
        }
3938
ef327bd847c0 6879044: Eliminate the dependency on logging from the AWT/2D/Swing classes
mchung
parents: 2
diff changeset
   111
        log.fine("Peer is {0}, client is {1}", peer, client);
2
90ce3da70b43 Initial load
duke
parents:
diff changeset
   112
90ce3da70b43 Initial load
duke
parents:
diff changeset
   113
        if (peer != null)
90ce3da70b43 Initial load
duke
parents:
diff changeset
   114
            return peer;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   115
90ce3da70b43 Initial load
duke
parents:
diff changeset
   116
        return null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   117
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   118
90ce3da70b43 Initial load
duke
parents:
diff changeset
   119
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   120
     * Subclasses should override disposeImpl() instead of dispose(). Client
90ce3da70b43 Initial load
duke
parents:
diff changeset
   121
     * code should always invoke dispose(), never disposeImpl().
90ce3da70b43 Initial load
duke
parents:
diff changeset
   122
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   123
    protected synchronized void disposeImpl() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   124
        super.disposeImpl();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   125
        clientComponentWindow = null;
90ce3da70b43 Initial load
duke
parents:
diff changeset
   126
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   127
90ce3da70b43 Initial load
duke
parents:
diff changeset
   128
    protected void awtLock() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   129
        XToolkit.awtLock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   130
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   131
90ce3da70b43 Initial load
duke
parents:
diff changeset
   132
    protected void awtUnlock() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   133
        XToolkit.awtUnlock();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   134
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   135
90ce3da70b43 Initial load
duke
parents:
diff changeset
   136
    long getCurrentParentWindow() {
90ce3da70b43 Initial load
duke
parents:
diff changeset
   137
        return (long)((XWindow)clientComponentWindow.getPeer()).getContentWindow();
90ce3da70b43 Initial load
duke
parents:
diff changeset
   138
    }
90ce3da70b43 Initial load
duke
parents:
diff changeset
   139
90ce3da70b43 Initial load
duke
parents:
diff changeset
   140
    /*
90ce3da70b43 Initial load
duke
parents:
diff changeset
   141
     * Native methods
90ce3da70b43 Initial load
duke
parents:
diff changeset
   142
     */
90ce3da70b43 Initial load
duke
parents:
diff changeset
   143
    private native boolean openXIMNative(long display);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   144
    private native boolean createXICNative(long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   145
    private native void setXICFocusNative(long window,
90ce3da70b43 Initial load
duke
parents:
diff changeset
   146
                                    boolean value, boolean active);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   147
    private native void adjustStatusWindow(long window);
90ce3da70b43 Initial load
duke
parents:
diff changeset
   148
}