Lines Matching refs:inputMethod

78     private InputMethod inputMethod;
144 if (inputMethod != null) {
145 if (inputMethod.setLocale(locale)) {
168 if (inputMethod == null && inputMethodLocator != null) {
169 inputMethod = getInputMethod();
170 if (inputMethod != null) {
171 return inputMethod.setLocale(locale);
181 if (inputMethod != null) {
182 return inputMethod.getLocale();
201 if (inputMethod != null) {
202 inputMethod.setCharacterSubsets(subsets);
212 InputMethod inputMethod = getInputMethod();
213 if (inputMethod == null) {
216 inputMethod.reconvert();
239 InputMethod inputMethod = getInputMethod();
261 if ((inputMethod != null) && (event instanceof InputEvent)) {
262 inputMethod.dispatchEvent(event);
315 if (inputMethod != null) {
329 if (inputMethod instanceof InputMethodAdapter) {
330 ((InputMethodAdapter) inputMethod).setAWTFocussedComponent(source);
375 inputMethodWindowContext.inputMethod != null) {
376 inputMethodWindowContext.inputMethod.hideWindows();
380 if (inputMethod != null) {
381 if (previousInputMethod != inputMethod &&
390 if (inputMethod instanceof InputMethodAdapter) {
391 ((InputMethodAdapter) inputMethod).setClientComponent(currentClientComponent);
393 inputMethod.activate();
397 Boolean state = (Boolean) perInputMethodState.remove(inputMethod);
459 if (inputMethod instanceof InputMethodAdapter) {
460 ((InputMethodAdapter) inputMethod).setAWTFocussedComponent(null);
487 if (inputMethod != null) {
489 inputMethod.deactivate(isTemporary);
490 previousInputMethod = inputMethod;
519 if (inputMethod != null) {
520 inputMethod.setLocale(newLocale);
532 if (inputMethod != null) {
534 wasCompositionEnabled = inputMethod.isCompositionEnabled();
544 if (inputMethod instanceof InputMethodAdapter) {
545 ((InputMethodAdapter) inputMethod).setClientComponent(null);
548 savedLocale = inputMethod.getLocale();
557 usedInputMethods.put(inputMethodLocator.deriveLocator(null), inputMethod);
558 perInputMethodState.put(inputMethod,
560 enableClientWindowNotification(inputMethod, false);
562 inputMethod.hideWindows();
566 inputMethod = null;
580 inputMethod = getInputMethodInstance();
581 if (inputMethod instanceof InputMethodAdapter) {
582 ((InputMethodAdapter) inputMethod).setAWTFocussedComponent(awtFocussedComponent);
589 inputMethod = getInputMethod();
590 if (inputMethod != null) {
592 inputMethod.setCompositionEnabled(wasCompositionEnabled);
614 if (inputMethod == null) {
632 inputMethod.removeNotify();
637 if (inputMethod instanceof InputMethodAdapter) {
638 ((InputMethodAdapter) inputMethod).setClientComponent(null);
665 if (inputMethod != null) {
667 inputMethod.hideWindows();
670 if (inputMethod == previousInputMethod) {
679 inputMethod.dispose();
685 enableClientWindowNotification(inputMethod, false);
688 inputMethod = null;
709 InputMethod inputMethod = getInputMethod();
711 if (inputMethod != null) {
712 return inputMethod.getControlObject();
723 InputMethod inputMethod = getInputMethod();
725 if (inputMethod == null) {
728 inputMethod.setCompositionEnabled(enable);
736 InputMethod inputMethod = getInputMethod();
738 if (inputMethod == null) {
741 return inputMethod.isCompositionEnabled();
749 InputMethod inputMethod = getInputMethod();
751 if (inputMethod == null) {
756 if (inputMethod instanceof InputMethodAdapter) {
758 inputMethodInfo = ((InputMethodAdapter)inputMethod).
775 return inputMethod.toString() + "-" + inputMethod.getLocale().toString();
786 InputMethod inputMethod = getInputMethod();
787 if (inputMethod != null && inputMethod instanceof InputMethodAdapter) {
788 ((InputMethodAdapter)inputMethod).stopListening();
794 if (inputMethod != null) {
795 return inputMethod;
802 inputMethod = getInputMethodInstance();
803 return inputMethod;
897 if (inputMethod != null) {
898 return inputMethodLocator.deriveLocator(inputMethod.getLocale());
907 if (inputMethod != null) {
908 inputMethod.endComposition();
920 if (requester != inputMethod) {
948 if (inputMethod == null) {
956 inputMethod.notifyClientWindowChange(null);
962 inputMethod.notifyClientWindowChange(clientWindowLocation);