/* * Copyright(c) 2021 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ using System; using System.ComponentModel; using Tizen.NUI.BaseComponents; namespace Tizen.NUI.Accessibility { public partial class AccessibilityManager { /// /// Event arguments that passed via FocusChangedEvent signal /// /// 6 /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public class FocusChangedEventArgs : EventArgs { private View viewCurrent; private View viewNext; /// 6 /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public View ViewCurrent { get { return viewCurrent; } set { viewCurrent = value; } } /// 6 /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public View ViewNext { get { return viewNext; } set { viewNext = value; } } } /// /// Event arguments that passed via FocusedViewActivated signal /// /// 6 /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public class FocusedViewActivatedEventArgs : EventArgs { private View view; /// 6 /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public View View { get { return view; } set { view = value; } } } /// /// Event arguments that passed via FocusOvershot signal /// /// 6 /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public class FocusOvershotEventArgs : EventArgs { private View currentFocusedView; private AccessibilityManager.FocusOvershotDirection focusOvershotDirection; /// 6 /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public View CurrentFocusedView { get { return currentFocusedView; } set { currentFocusedView = value; } } /// 6 /// This will be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API. [EditorBrowsable(EditorBrowsableState.Never)] public AccessibilityManager.FocusOvershotDirection FocusOvershotDirection { get { return focusOvershotDirection; } set { focusOvershotDirection = value; } } } } }