Home
last modified time | relevance | path

Searched refs:ShowPreviewNG (Results 1 – 8 of 8) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/test/unittest/base/
H A Dsubwindow_manager_test.cpp50 EXPECT_EQ(manager->ShowPreviewNG(false), nullptr);
65 auto subwindow = manager->ShowPreviewNG(false);
/ohos5.0/foundation/arkui/ace_engine/test/mock/base/
H A Dmock_subwindow.h39 MOCK_METHOD1(ShowPreviewNG, bool(bool isStartDraggingFromSubWindow));
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/subwindow/
H A Dsubwindow.h53 virtual bool ShowPreviewNG(bool isStartDraggingFromSubWindow) = 0;
H A Dsubwindow_manager.h66 RefPtr<Subwindow> ShowPreviewNG(bool isStartDraggingFromSubWindow);
H A Dsubwindow_manager.cpp248 RefPtr<Subwindow> SubwindowManager::ShowPreviewNG(bool isStartDraggingFromSubWindow) in ShowPreviewNG() function in OHOS::Ace::SubwindowManager
259 if (!subwindow->ShowPreviewNG(isStartDraggingFromSubWindow)) { in ShowPreviewNG()
/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/entrance/subwindow/
H A Dsubwindow_ohos.h65 bool ShowPreviewNG(bool isStartDraggingFromSubWindow = false) override;
H A Dsubwindow_ohos.cpp683 bool SubwindowOhos::ShowPreviewNG(bool isStartDraggingFromSubWindow) in ShowPreviewNG() function in OHOS::Ace::SubwindowOhos
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/event/
H A Dgesture_event_hub.cpp995 auto window = SubwindowManager::GetInstance()->ShowPreviewNG(isStartDraggingFromSubWindow); in OnDragStart()