1 /* 2 * Copyright (C) 2025 Huawei Device Co., Ltd. 3 * Licensed under the Apache License, Version 2.0 (the "License"); 4 * you may not use this file except in compliance with the License. 5 * You may obtain a copy of the License at 6 * 7 * http://www.apache.org/licenses/LICENSE-2.0 8 * 9 * Unless required by applicable law or agreed to in writing, software 10 * distributed under the License is distributed on an "AS IS" BASIS, 11 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 * See the License for the specific language governing permissions and 13 * limitations under the License. 14 */ 15 16 #include "magnification_menu_manager.h" 17 18 namespace OHOS { 19 namespace Accessibility { 20 MagnificationMenuManager()21MagnificationMenuManager::MagnificationMenuManager() 22 { 23 } 24 ShowMenuWindow(uint32_t mode)25void MagnificationMenuManager::ShowMenuWindow(uint32_t mode) 26 { 27 (void)mode; 28 } 29 DisableMenuWindow()30void MagnificationMenuManager::DisableMenuWindow() 31 { 32 } 33 MoveMenuWindow(int32_t deltaX,int32_t deltaY)34void MagnificationMenuManager::MoveMenuWindow(int32_t deltaX, int32_t deltaY) 35 { 36 (void)deltaX; 37 (void)deltaY; 38 } 39 AttachToEdge()40void MagnificationMenuManager::AttachToEdge() 41 { 42 } 43 SetCurrentType(uint32_t type)44void MagnificationMenuManager::SetCurrentType(uint32_t type) 45 { 46 (void)type; 47 } 48 IsTapOnMenu(int32_t posX,int32_t posY)49bool MagnificationMenuManager::IsTapOnMenu(int32_t posX, int32_t posY) 50 { 51 (void)posX; 52 (void)posY; 53 return false; 54 } 55 OnMenuTap()56void MagnificationMenuManager::OnMenuTap() 57 { 58 } 59 RefreshWindowParam()60void MagnificationMenuManager::RefreshWindowParam() 61 { 62 } 63 } // namespace Accessibility 64 } // namespace OHOS