输入法联调Ace

Signed-off-by: jiangdayuan <jiangdayuan@huawei.com>
Change-Id: I1b7337395d7bdc198054f09beacaee0b7bde6d19
This commit is contained in:
jiangdayuan
2021-12-25 19:58:40 +08:00
parent 8081ef8e6f
commit 98a576bd20
5 changed files with 117 additions and 42 deletions
@@ -113,7 +113,7 @@ using namespace MessageID;
MessageParcel *data = msg->msgContent_;
int32_t length = data->ReadInt32();
if (textListener != nullptr) {
textListener->DeleteBackward(length);
textListener->DeleteForward(length);
}
break;
}
@@ -253,9 +253,9 @@ using namespace MessageID;
InputMethodController::GetInstance()->OnRemoteSaDied(object);
}
void InputMethodController::onCursorUpdate(CursorInfo cursorInfo)
void InputMethodController::OnCursorUpdate(CursorInfo cursorInfo)
{
IMSA_HILOGI("InputMethodController::onCursorUpdate");
IMSA_HILOGI("InputMethodController::OnCursorUpdate");
}
void InputMethodController::OnSelectionChange(std::u16string text, int start, int end)
@@ -266,9 +266,9 @@ using namespace MessageID;
mSelectEnd = end;
}
void InputMethodController::onConfigurationChange(Configuration info)
void InputMethodController::OnConfigurationChange(Configuration info)
{
IMSA_HILOGI("InputMethodController::onConfigurationChange");
IMSA_HILOGI("InputMethodController::OnConfigurationChange");
}
}
}