Searched refs:SetMouseDragMonitorState (Results 1 - 10 of 10) sorted by relevance
/foundation/arkui/ace_engine/adapter/ohos/capability/interaction/ |
H A D | interaction_impl.h | 32 int32_t SetMouseDragMonitorState(bool state) override;
|
H A D | interaction_impl.cpp | 54 int32_t InteractionImpl::SetMouseDragMonitorState(bool state) in SetMouseDragMonitorState() function in OHOS::Ace::InteractionImpl 56 return InteractionManager::GetInstance()->SetMouseDragMonitorState(state); in SetMouseDragMonitorState()
|
/foundation/arkui/ace_engine/frameworks/core/common/interaction/ |
H A D | interaction_interface.h | 33 virtual int32_t SetMouseDragMonitorState(bool state) = 0;
|
/foundation/arkui/ace_engine/adapter/preview/entrance/msdp/ |
H A D | interaction_impl.h | 31 int32_t SetMouseDragMonitorState(bool state) override;
|
H A D | interaction_impl.cpp | 36 int32_t InteractionImpl::SetMouseDragMonitorState(bool state) in SetMouseDragMonitorState() function in OHOS::Ace::InteractionImpl
|
/foundation/arkui/ace_engine/test/mock/core/common/ |
H A D | mock_interaction_interface.h | 34 MOCK_METHOD(int32_t, SetMouseDragMonitorState, (bool state), (override));
|
/foundation/arkui/ace_engine/test/unittest/core/event/ |
H A D | gesture_event_hub_test_two_ng.cpp | 356 * @tc.name: SetMouseDragMonitorState 357 * @tc.desc: Test SetMouseDragMonitorState function 365 guestureEventHub->SetMouseDragMonitorState(true); in HWTEST_F() 642 * @tc.desc: Test SetMouseDragMonitorState function 653 EXPECT_CALL(*mock, SetMouseDragMonitorState(testing::_)).Times(1).WillOnce(Return(false)); in HWTEST_F() 654 guestureEventHub->SetMouseDragMonitorState(false); in HWTEST_F() 655 EXPECT_CALL(*mock, SetMouseDragMonitorState(testing::_)).WillRepeatedly(Return(true)); in HWTEST_F() 656 guestureEventHub->SetMouseDragMonitorState(true); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/ |
H A D | gesture_event_hub_drag.cpp | 379 SetMouseDragMonitorState(true); in HandleOnDragStart() 499 SetMouseDragMonitorState(false); in OnDragStart() 547 SetMouseDragMonitorState(false); in OnDragStart() 1258 void GestureEventHub::SetMouseDragMonitorState(bool state) in SetMouseDragMonitorState() function in OHOS::Ace::NG::GestureEventHub 1260 auto ret = InteractionInterface::GetInstance()->SetMouseDragMonitorState(state); in SetMouseDragMonitorState()
|
H A D | gesture_event_hub.h | 276 void SetMouseDragMonitorState(bool state);
|
/foundation/arkui/ace_engine/interfaces/napi/kits/drag_controller/ |
H A D | js_drag_controller.cpp | 121 void SetMouseDragMonitorState(std::shared_ptr<DragControllerAsyncCtx> asyncCtx, bool state); 294 SetMouseDragMonitorState(dragAction->asyncCtx_, true); in StartDrag() 552 void SetMouseDragMonitorState(std::shared_ptr<DragControllerAsyncCtx> asyncCtx, bool state) in SetMouseDragMonitorState() function 557 auto ret = InteractionInterface::GetInstance()->SetMouseDragMonitorState(state); in SetMouseDragMonitorState() 844 SetMouseDragMonitorState(asyncCtx, false); in OnMultipleComplete() 1656 SetMouseDragMonitorState(dragAsyncContext, true); in JSExecuteDrag()
|
Completed in 10 milliseconds