blob: a4eaa21538f733064ca6c4c7d378789ce372fe14 [file] [log] [blame]
Yohei Yukawac6632df2018-10-21 11:47:16 -07001/*
2 * Copyright (C) 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17package com.android.internal.inputmethod;
18
19import static java.lang.annotation.RetentionPolicy.SOURCE;
20
21import android.annotation.IntDef;
22
23import java.lang.annotation.Retention;
24
25/**
26 * Describes the reason why {@link android.view.inputmethod.InputMethodManager} is calling
27 * {@link com.android.internal.view.IInputMethodManager#startInputOrWindowGainedFocus}.
28 */
29@Retention(SOURCE)
Yohei Yukawa42194222018-10-21 20:14:40 -070030@IntDef(value = {
31 StartInputReason.UNSPECIFIED,
32 StartInputReason.WINDOW_FOCUS_GAIN,
33 StartInputReason.WINDOW_FOCUS_GAIN_REPORT_ONLY,
34 StartInputReason.APP_CALLED_RESTART_INPUT_API,
35 StartInputReason.CHECK_FOCUS,
36 StartInputReason.BOUND_TO_IMMS,
37 StartInputReason.UNBOUND_FROM_IMMS,
38 StartInputReason.ACTIVATED_BY_IMMS,
39 StartInputReason.DEACTIVATED_BY_IMMS,
40 StartInputReason.SESSION_CREATED_BY_IME})
Yohei Yukawac6632df2018-10-21 11:47:16 -070041public @interface StartInputReason {
42 /**
43 * Reason is not specified.
44 */
Yohei Yukawa42194222018-10-21 20:14:40 -070045 int UNSPECIFIED = 0;
Yohei Yukawac6632df2018-10-21 11:47:16 -070046 /**
47 * {@link android.view.Window} gained focus and it made the focused {@link android.view.View}
48 * to (re)start a new connection.
49 */
Yohei Yukawa42194222018-10-21 20:14:40 -070050 int WINDOW_FOCUS_GAIN = 1;
Yohei Yukawac6632df2018-10-21 11:47:16 -070051 /**
52 * {@link android.view.Window} gained focus but there is no {@link android.view.View} that is
Ming-Shin Lu6ecbf082020-06-01 17:42:32 +080053 * eligible to have IME focus, or the focused view is same as current served view and its
54 * input connection remains. {@link android.view.inputmethod.InputMethodManager} just reports
55 * this window focus change event to sync IME input target for system.
Yohei Yukawac6632df2018-10-21 11:47:16 -070056 */
Yohei Yukawa42194222018-10-21 20:14:40 -070057 int WINDOW_FOCUS_GAIN_REPORT_ONLY = 2;
Yohei Yukawac6632df2018-10-21 11:47:16 -070058 /**
59 * {@link android.view.inputmethod.InputMethodManager#restartInput(android.view.View)} is
60 * either explicitly called by the application or indirectly called by some Framework class
61 * (e.g. {@link android.widget.EditText}).
62 */
Yohei Yukawa42194222018-10-21 20:14:40 -070063 int APP_CALLED_RESTART_INPUT_API = 3;
Yohei Yukawac6632df2018-10-21 11:47:16 -070064 /**
65 * {@link android.view.View} requested a new connection because of view focus change.
66 */
Yohei Yukawa42194222018-10-21 20:14:40 -070067 int CHECK_FOCUS = 4;
Yohei Yukawac6632df2018-10-21 11:47:16 -070068 /**
69 * {@link android.view.inputmethod.InputMethodManager} is responding to
70 * {@link com.android.internal.view.IInputMethodClient#onBindMethod}.
71 */
Yohei Yukawa42194222018-10-21 20:14:40 -070072 int BOUND_TO_IMMS = 5;
Yohei Yukawac6632df2018-10-21 11:47:16 -070073 /**
74 * {@link android.view.inputmethod.InputMethodManager} is responding to
75 * {@link com.android.internal.view.IInputMethodClient#onUnbindMethod}.
76 */
Yohei Yukawa42194222018-10-21 20:14:40 -070077 int UNBOUND_FROM_IMMS = 6;
Yohei Yukawac6632df2018-10-21 11:47:16 -070078 /**
79 * {@link android.view.inputmethod.InputMethodManager} is responding to
80 * {@link com.android.internal.view.IInputMethodClient#setActive}.
81 */
Yohei Yukawa42194222018-10-21 20:14:40 -070082 int ACTIVATED_BY_IMMS = 7;
Yohei Yukawac6632df2018-10-21 11:47:16 -070083 /**
84 * {@link android.view.inputmethod.InputMethodManager} is responding to
85 * {@link com.android.internal.view.IInputMethodClient#setActive}.
86 */
Yohei Yukawa42194222018-10-21 20:14:40 -070087 int DEACTIVATED_BY_IMMS = 8;
Yohei Yukawac6632df2018-10-21 11:47:16 -070088 /**
89 * {@link com.android.server.inputmethod.InputMethodManagerService} is responding to
90 * {@link com.android.internal.view.IInputSessionCallback#sessionCreated}.
91 */
Yohei Yukawa42194222018-10-21 20:14:40 -070092 int SESSION_CREATED_BY_IME = 9;
Yohei Yukawac6632df2018-10-21 11:47:16 -070093}