update test/mock/frameworks_kits_ability_native_test/include/mock_window.h.

window show增加参数

Signed-off-by: yyuehao <yangyuehao@huawei.com>
This commit is contained in:
yyuehao 2024-11-18 13:58:03 +00:00 committed by Gitee
parent 477f099ace
commit 46b3fb5a0f
No known key found for this signature in database
GPG Key ID: 173E9B9CA92EEF8F

View File

@ -71,7 +71,8 @@ public:
virtual WMError SetLayoutFullScreen(bool status) {return WMError::WM_OK;} virtual WMError SetLayoutFullScreen(bool status) {return WMError::WM_OK;}
virtual WMError SetFullScreen(bool status) {return WMError::WM_OK;} virtual WMError SetFullScreen(bool status) {return WMError::WM_OK;}
virtual WMError Destroy() {return WMError::WM_OK;} virtual WMError Destroy() {return WMError::WM_OK;}
virtual WMError Show(uint32_t reason = 0, bool withAnimation = false) {return WMError::WM_OK;} virtual WMError Show(uint32_t reason = 0, bool withAnimation = false,
bool withFocus = true) {return WMError::WM_OK;}
virtual WMError Hide(uint32_t reason = 0, bool withAnimation = false, virtual WMError Hide(uint32_t reason = 0, bool withAnimation = false,
bool isFromInnerkits = true) {return WMError::WM_OK;} bool isFromInnerkits = true) {return WMError::WM_OK;}
virtual WMError MoveTo(int32_t x, int32_t y, bool isMoveToGlobal = false) {return WMError::WM_OK;} virtual WMError MoveTo(int32_t x, int32_t y, bool isMoveToGlobal = false) {return WMError::WM_OK;}