modules/graphics/src/main/java/com/sun/glass/ui/gtk/GtkView.java

Print this page

        

*** 101,119 **** protected native boolean _enterFullscreen(long ptr, boolean animate, boolean keepRatio, boolean hideCursor); @Override protected native void _exitFullscreen(long ptr, boolean animate); protected void notifyInputMethodDraw(String text, int first, int length, int caret) { if (text != null) { preedit.replace(first, first + length, text); - notifyInputMethod(preedit.toString(), null, null, null, 0, caret, 0); - lastCaret = caret; } else { preedit.setLength(0); } } protected void notifyInputMethodCaret(int pos, int direction, int style) { switch (direction) { case 0: //XIMForwardChar --- 101,126 ---- protected native boolean _enterFullscreen(long ptr, boolean animate, boolean keepRatio, boolean hideCursor); @Override protected native void _exitFullscreen(long ptr, boolean animate); + @Override protected void _finishInputMethodComposition(long ptr) { + if (imEnabled) { + // Discard any pre-edited text + preedit.setLength(0); + notifyInputMethod(preedit.toString(), null, null, null, 0, 0, 0); + } + } protected void notifyInputMethodDraw(String text, int first, int length, int caret) { if (text != null) { preedit.replace(first, first + length, text); } else { preedit.setLength(0); } + notifyInputMethod(preedit.toString(), null, null, null, 0, caret, 0); + lastCaret = caret; } protected void notifyInputMethodCaret(int pos, int direction, int style) { switch (direction) { case 0: //XIMForwardChar