/foundation/multimodalinput/input/intention/drag/client/src/ |
H A D | drag_client.cpp | 39 for (const auto& shadowInfo : dragData.shadowInfos) { in StartDrag() 40 CHKPR(shadowInfo.pixelMap, RET_ERR); in StartDrag() 41 if ((shadowInfo.x > 0) || (shadowInfo.y > 0) || in StartDrag() 42 (shadowInfo.x < -shadowInfo.pixelMap->GetWidth()) || in StartDrag() 43 (shadowInfo.y < -shadowInfo.pixelMap->GetHeight())) { in StartDrag() 45 shadowInfo.x, shadowInfo in StartDrag() 205 UpdateShadowPic(ITunnelClient &tunnel, const ShadowInfo &shadowInfo) UpdateShadowPic() argument [all...] |
/foundation/arkui/ace_engine/adapter/ohos/capability/interaction/ |
H A D | interaction_impl.cpp | 37 int32_t InteractionImpl::UpdateShadowPic(const OHOS::Ace::ShadowInfoCore& shadowInfo) in UpdateShadowPic() argument 39 auto pixelMap = shadowInfo.pixelMap; in UpdateShadowPic() 41 Msdp::DeviceStatus::ShadowInfo msdpShadowInfo { nullptr, shadowInfo.x, shadowInfo.y }; in UpdateShadowPic() 44 Msdp::DeviceStatus::ShadowInfo msdpShadowInfo { shadowInfo.pixelMap->GetPixelMapSharedPtr(), shadowInfo.x, in UpdateShadowPic() 45 shadowInfo.y }; in UpdateShadowPic() 74 for (auto& shadowInfo: dragData.shadowInfos) { in StartDrag() 75 if (shadowInfo.pixelMap) { in StartDrag() 76 msdpDragData.shadowInfos.push_back({ shadowInfo in StartDrag() [all...] |
H A D | interaction_impl.h | 28 int32_t UpdateShadowPic(const ShadowInfoCore& shadowInfo) override;
|
/foundation/arkui/ace_engine/frameworks/core/common/interaction/ |
H A D | interaction_interface.h | 29 virtual int32_t UpdateShadowPic(const ShadowInfoCore& shadowInfo) = 0;
|
/foundation/arkui/ace_engine/adapter/preview/entrance/msdp/ |
H A D | interaction_impl.h | 27 int32_t UpdateShadowPic(const ShadowInfoCore& shadowInfo) override;
|
H A D | interaction_impl.cpp | 26 int32_t InteractionImpl::UpdateShadowPic(const OHOS::Ace::ShadowInfoCore& shadowInfo) in UpdateShadowPic() argument
|
/foundation/arkui/ace_engine/test/mock/core/common/ |
H A D | mock_interaction_interface.h | 30 MOCK_METHOD(int32_t, UpdateShadowPic, (const ShadowInfoCore& shadowInfo), (override));
|
/foundation/multimodalinput/input/intention/drag/client/include/ |
H A D | drag_client.h | 47 int32_t UpdateShadowPic(ITunnelClient &tunnel, const ShadowInfo &shadowInfo);
|
/foundation/multimodalinput/input/intention/prototype/include/ |
H A D | i_drag_manager.h | 62 virtual int32_t UpdateShadowPic(const ShadowInfo &shadowInfo) = 0;
|
/foundation/multimodalinput/input/intention/drag/data/src/ |
H A D | drag_params.cpp | 128 UpdateShadowPicParam::UpdateShadowPicParam(const ShadowInfo &shadowInfo) in UpdateShadowPicParam() argument 129 : shadowInfo_(shadowInfo) in UpdateShadowPicParam()
|
/foundation/multimodalinput/input/intention/frameworks/client/include/ |
H A D | intention_manager.h | 70 int32_t UpdateShadowPic(const ShadowInfo &shadowInfo);
|
/foundation/arkui/ace_engine/interfaces/napi/kits/drag_controller/ |
H A D | js_drag_controller.cpp | 695 Msdp::DeviceStatus::ShadowInfo shadowInfo { pixelMap, -x, -y }; in GetShadowInfoArray() 696 shadowInfos.push_back(shadowInfo); in GetShadowInfoArray() 708 bool JudgeCoordinateCanDrag(Msdp::DeviceStatus::ShadowInfo& shadowInfo) in JudgeCoordinateCanDrag() argument 710 CHECK_NULL_RETURN(shadowInfo.pixelMap, false); in JudgeCoordinateCanDrag() 711 int32_t x = -shadowInfo.x; in JudgeCoordinateCanDrag() 712 int32_t y = -shadowInfo.y; in JudgeCoordinateCanDrag() 713 int32_t width = shadowInfo.pixelMap->GetWidth(); in JudgeCoordinateCanDrag() 714 int32_t height = shadowInfo.pixelMap->GetHeight(); in JudgeCoordinateCanDrag() 732 TAG_LOGE(AceLogTag::ACE_DRAG, "shadowInfo array is empty"); in EnvelopedDragData() 977 Msdp::DeviceStatus::ShadowInfo shadowInfo { asyncCt in TryToStartDrag() [all...] |
/foundation/multimodalinput/input/intention/frameworks/client/src/ |
H A D | intention_manager.cpp | 336 int32_t IntentionManager::UpdateShadowPic(const ShadowInfo &shadowInfo) in UpdateShadowPic() argument 339 return drag_.UpdateShadowPic(*tunnel_, shadowInfo); in UpdateShadowPic()
|
/foundation/multimodalinput/input/intention/drag/data/include/ |
H A D | drag_params.h | 106 explicit UpdateShadowPicParam(const ShadowInfo &shadowInfo);
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/drag_drop/ |
H A D | drag_drop_func_wrapper.cpp | 76 ShadowInfoCore shadowInfo { pixelMap, -x, -y }; in GetShadowInfoArray() 77 shadowInfos.push_back(shadowInfo); in GetShadowInfoArray() 142 TAG_LOGE(AceLogTag::ACE_DRAG, "shadowInfo array is empty"); in EnvelopedDragData()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/ |
H A D | gesture_event_hub_drag.cpp | 714 ShadowInfoCore shadowInfo { pixelMapDuplicated, pixelMapOffset.GetX(), pixelMapOffset.GetY() }; in OnDragStart() 715 DragDataCore dragData { { shadowInfo }, {}, udKey, extraInfoLimited, arkExtraInfoJson->ToString(), in OnDragStart()
|