1 /* Copyright (c) 2020 Samsung Electronics 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
7 * http://www.apache.org/licenses/LICENSE-2.0
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.
17 using Tizen.NUI.BaseComponents;
18 using Tizen.NUI.Components;
19 using System.ComponentModel;
21 namespace Tizen.NUI.Wearable
24 /// [Draft] This class provides a list view styled by wearable ux.
25 /// List will lay out all items with Fish-Eye layout manager.
27 /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API.
28 [EditorBrowsable(EditorBrowsableState.Never)]
29 public class WearableList : RecyclerView
31 private RecycleItem FocusedItem = null;
34 /// Default constructor.
36 /// <param name="adapter">Recycle adapter of List.</param>
37 /// <since_tizen> 8 </since_tizen>
38 /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API
39 [EditorBrowsable(EditorBrowsableState.Never)]
40 public WearableList() : base(new RecycleAdapter(), new FishEyeLayoutManager())
42 ScrollingDirection = ScrollableBase.Direction.Vertical;
44 ScrollDragStartEvent += OnScrollDragStart;
45 ScrollAnimationEndEvent += OnAnimationEnd;
47 ContentContainer.PositionUsesPivotPoint = true;
48 ContentContainer.ParentOrigin = Tizen.NUI.ParentOrigin.Center;
49 ContentContainer.PivotPoint = Tizen.NUI.PivotPoint.TopCenter;
50 NoticeAnimationEndBeforePosition = 50;
52 ScrollAvailableArea = new Vector2(0, ContentContainer.SizeHeight);
56 Scrollbar = new CircularScrollbar();
59 protected override void SetScrollbar()
61 if(LayoutManager != null)
63 Scrollbar.Initialize(ContentContainer.Size.Height, LayoutManager.StepSize, ContentContainer.CurrentPosition.Y, false);
67 public new RecycleAdapter Adapter
78 foreach (View child in Children)
80 child.PositionUsesPivotPoint = true;
81 child.ParentOrigin = Tizen.NUI.ParentOrigin.TopCenter;
84 ScrollAvailableArea = new Vector2( 0, ContentContainer.SizeHeight );
89 /// Set focus to item which has specific data index.
91 /// <param name="dataIndex">Data index of item.</param>
92 /// <param name="animated">If set true, scroll to item using animation.</param>
93 /// <since_tizen> 8 </since_tizen>
94 /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API
95 public void SetFocus(int dataIndex, bool animated)
97 foreach (RecycleItem item in Children)
99 if (item.DataIndex == dataIndex)
101 RecycleItem prevFocusedItem = FocusedItem;
102 prevFocusedItem?.OnFocusLost();
104 FocusedItem.OnFocusGained();
106 ScrollTo(item.DataIndex * mLayoutManager.StepSize, animated);
111 private void OnAnimationEnd(object source, ScrollableBase.ScrollEventArgs args)
116 /// This helps developer who wants to know before scroll is reaching target position.
118 /// <param name="targetPosition">Index of item.</param>
119 /// <since_tizen> 8 </since_tizen>
120 /// This may be public opened in tizen_6.0 after ACR done. Before ACR, need to be hidden as inhouse API
121 protected override void OnPreReachedTargetPosition(float targetPosition)
123 int targetDataIndex = (int)Math.Round(Math.Abs(targetPosition) / mLayoutManager.StepSize);
125 for (int i = 0; i < Children.Count; i++)
127 RecycleItem item = Children[i] as RecycleItem;
129 if (targetDataIndex == item.DataIndex)
132 item.OnFocusGained();
138 private void OnScrollDragStart(object source, ScrollableBase.ScrollEventArgs args)
140 RecycleItem prevFocusedItem = FocusedItem;
141 prevFocusedItem?.OnFocusLost();