Home
last modified time | relevance | path

Searched refs:keyboardPanelInfo (Results 1 – 11 of 11) sorted by relevance

/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_ability/include/
H A Dinput_method_panel.h107 … using ChangeHandler = std::function<void(const Rosen::KeyboardPanelInfo &keyboardPanelInfo)>;
112 void OnKeyboardPanelInfoChanged(const Rosen::KeyboardPanelInfo &keyboardPanelInfo) override in OnKeyboardPanelInfoChanged() argument
117 handler_(keyboardPanelInfo); in OnKeyboardPanelInfoChanged()
125 void HandleKbPanelInfoChange(const Rosen::KeyboardPanelInfo &keyboardPanelInfo);
/ohos5.0/foundation/window/window_manager/interfaces/innerkits/wm/
H A Dwm_common.h821 KeyboardPanelInfo* keyboardPanelInfo = new(std::nothrow)KeyboardPanelInfo; in Unmarshalling() local
822 if (keyboardPanelInfo == nullptr) { in Unmarshalling()
825 bool res = parcel.ReadInt32(keyboardPanelInfo->rect_.posX_) && in Unmarshalling()
826 …parcel.ReadInt32(keyboardPanelInfo->rect_.posY_) && parcel.ReadUint32(keyboardPanelInfo->rect_.wid… in Unmarshalling()
827 parcel.ReadUint32(keyboardPanelInfo->rect_.height_); in Unmarshalling()
829 delete keyboardPanelInfo; in Unmarshalling() local
832 keyboardPanelInfo->gravity_ = static_cast<WindowGravity>(parcel.ReadUint32()); in Unmarshalling()
833 keyboardPanelInfo->isShowing_ = parcel.ReadBool(); in Unmarshalling()
835 return keyboardPanelInfo; in Unmarshalling()
H A Dwindow.h520 virtual void OnKeyboardPanelInfoChanged(const KeyboardPanelInfo& keyboardPanelInfo) {} in OnKeyboardPanelInfoChanged() argument
/ohos5.0/foundation/window/window_manager/window_scene/session/host/src/
H A Dkeyboard_session.cpp393 KeyboardPanelInfo keyboardPanelInfo; in NotifyKeyboardPanelInfoChange() local
394 keyboardPanelInfo.rect_ = SessionHelper::TransferToRect(rect); in NotifyKeyboardPanelInfoChange()
395 keyboardPanelInfo.gravity_ = static_cast<WindowGravity>(GetKeyboardGravity()); in NotifyKeyboardPanelInfoChange()
396 keyboardPanelInfo.isShowing_ = isKeyboardPanelShow; in NotifyKeyboardPanelInfoChange()
398 sessionStage_->NotifyKeyboardPanelInfoChange(keyboardPanelInfo); in NotifyKeyboardPanelInfoChange()
/ohos5.0/base/inputmethod/imf/frameworks/native/inputmethod_ability/src/
H A Dinput_method_panel.cpp960 KeyboardPanelInfoChangeListener([this](const KeyboardPanelInfo &keyboardPanelInfo) { in RegisterKeyboardPanelInfoChangeListener() argument
962 panelHeightCallback_(keyboardPanelInfo.rect_.height_, panelFlag_); in RegisterKeyboardPanelInfoChangeListener()
964 HandleKbPanelInfoChange(keyboardPanelInfo); in RegisterKeyboardPanelInfoChangeListener()
986 void InputMethodPanel::HandleKbPanelInfoChange(const KeyboardPanelInfo &keyboardPanelInfo) in HandleKbPanelInfoChange() argument
990 if (keyboardPanelInfo.isShowing_) { in HandleKbPanelInfoChange()
993 PanelStatusChangeToImc(status, keyboardPanelInfo.rect_); in HandleKbPanelInfoChange()
/ohos5.0/foundation/window/window_manager/window_scene/session/container/include/zidl/
H A Dsession_stage_proxy.h68 void NotifyKeyboardPanelInfoChange(const KeyboardPanelInfo& keyboardPanelInfo) override;
H A Dsession_stage_interface.h148 virtual void NotifyKeyboardPanelInfoChange(const KeyboardPanelInfo& keyboardPanelInfo) {} in NotifyKeyboardPanelInfoChange() argument
/ohos5.0/foundation/window/window_manager/window_scene/session/container/src/zidl/
H A Dsession_stage_stub.cpp526 sptr<KeyboardPanelInfo> keyboardPanelInfo = data.ReadParcelable<KeyboardPanelInfo>(); in HandleNotifyKeyboardPanelInfoChange() local
527 if (keyboardPanelInfo == nullptr) { in HandleNotifyKeyboardPanelInfoChange()
531 NotifyKeyboardPanelInfoChange(*keyboardPanelInfo); in HandleNotifyKeyboardPanelInfoChange()
H A Dsession_stage_proxy.cpp1089 void SessionStageProxy::NotifyKeyboardPanelInfoChange(const KeyboardPanelInfo& keyboardPanelInfo) in NotifyKeyboardPanelInfoChange() argument
1099 if (!data.WriteParcelable(&keyboardPanelInfo)) { in NotifyKeyboardPanelInfoChange()
/ohos5.0/foundation/window/window_manager/wm/include/
H A Dwindow_scene_session_impl.h162 void NotifyKeyboardPanelInfoChange(const KeyboardPanelInfo& keyboardPanelInfo) override;
/ohos5.0/foundation/window/window_manager/wm/src/
H A Dwindow_scene_session_impl.cpp4128 …d WindowSceneSessionImpl::NotifyKeyboardPanelInfoChange(const KeyboardPanelInfo& keyboardPanelInfo) in NotifyKeyboardPanelInfoChange() argument
4131 ", rect_: [%{public}d, %{public}d, %{public}d, %{public}d]", keyboardPanelInfo.isShowing_, in NotifyKeyboardPanelInfoChange()
4132 keyboardPanelInfo.gravity_, keyboardPanelInfo.rect_.posX_, keyboardPanelInfo.rect_.posY_, in NotifyKeyboardPanelInfoChange()
4133 keyboardPanelInfo.rect_.width_, keyboardPanelInfo.rect_.height_); in NotifyKeyboardPanelInfoChange()
4136 … keyboardPanelInfoChangeListeners_.GetRefPtr()->OnKeyboardPanelInfoChanged(keyboardPanelInfo); in NotifyKeyboardPanelInfoChange()