1885b47fbSopenharmony_ci/* 2885b47fbSopenharmony_ci * Copyright (C) 2022 Huawei Device Co., Ltd. 3885b47fbSopenharmony_ci * Licensed under the Apache License, Version 2.0 (the "License"); 4885b47fbSopenharmony_ci * you may not use this file except in compliance with the License. 5885b47fbSopenharmony_ci * You may obtain a copy of the License at 6885b47fbSopenharmony_ci * 7885b47fbSopenharmony_ci * http://www.apache.org/licenses/LICENSE-2.0 8885b47fbSopenharmony_ci * 9885b47fbSopenharmony_ci * Unless required by applicable law or agreed to in writing, software 10885b47fbSopenharmony_ci * distributed under the License is distributed on an "AS IS" BASIS, 11885b47fbSopenharmony_ci * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12885b47fbSopenharmony_ci * See the License for the specific language governing permissions and 13885b47fbSopenharmony_ci * limitations under the License. 14885b47fbSopenharmony_ci */ 15885b47fbSopenharmony_ci 16885b47fbSopenharmony_ci#ifndef ACCESSIBILITY_STATE_EVENT_H 17885b47fbSopenharmony_ci#define ACCESSIBILITY_STATE_EVENT_H 18885b47fbSopenharmony_ci 19885b47fbSopenharmony_ci#include <cstdint> 20885b47fbSopenharmony_ci 21885b47fbSopenharmony_cinamespace OHOS { 22885b47fbSopenharmony_cinamespace Accessibility { 23885b47fbSopenharmony_cienum AccessibilityStateEventType : uint32_t { 24885b47fbSopenharmony_ci EVENT_ACCESSIBILITY_STATE_CHANGED = 0x00000000, 25885b47fbSopenharmony_ci EVENT_TOUCH_GUIDE_STATE_CHANGED, 26885b47fbSopenharmony_ci EVENT_KEVEVENT_STATE_CHANGED, 27885b47fbSopenharmony_ci EVENT_GESTURE_STATE_CHANGED, 28885b47fbSopenharmony_ci EVENT_SCREEN_MAGNIFIER_CHANGED, 29885b47fbSopenharmony_ci EVENT_AUTO_CLICK_CHANGED, 30885b47fbSopenharmony_ci EVENT_SHORT_KEY_CHANGED, 31885b47fbSopenharmony_ci EVENT_TYPE_MAX, 32885b47fbSopenharmony_ci}; 33885b47fbSopenharmony_ci 34885b47fbSopenharmony_ciclass AccessibilityStateObserver { 35885b47fbSopenharmony_cipublic: 36885b47fbSopenharmony_ci /** 37885b47fbSopenharmony_ci * @brief Destruct 38885b47fbSopenharmony_ci * @since 3 39885b47fbSopenharmony_ci * @sysCap Accessibility 40885b47fbSopenharmony_ci */ 41885b47fbSopenharmony_ci virtual ~AccessibilityStateObserver() = default; 42885b47fbSopenharmony_ci 43885b47fbSopenharmony_ci /** 44885b47fbSopenharmony_ci * @brief Receives notifications on accessibility status changes. 45885b47fbSopenharmony_ci * @param state Indicates the status change. 46885b47fbSopenharmony_ci * @since 3 47885b47fbSopenharmony_ci * @sysCap Accessibility 48885b47fbSopenharmony_ci */ 49885b47fbSopenharmony_ci virtual void OnStateChanged(const bool state) = 0; 50885b47fbSopenharmony_ci}; 51885b47fbSopenharmony_ci} // namespace Accessibility 52885b47fbSopenharmony_ci} // namespace OHOS 53885b47fbSopenharmony_ci#endif // ACCESSIBILITY_STATE_EVENT_H