[NUI] Introduce CollectionView and related classes. (#2525)
[platform/core/csapi/tizenfx.git] / src / Tizen.NUI.Components / Controls / RecyclerView / ItemSource / EmptySource.cs
1 /* Copyright (c) 2021 Samsung Electronics Co., Ltd.
2  *
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
17 using System;
18
19 namespace Tizen.NUI.Components
20 {
21     internal sealed class EmptySource : IItemSource
22     {
23         public int Count => 0;
24
25         public bool HasHeader { get; set; }
26         public bool HasFooter { get; set; }
27
28         public void Dispose()
29         {
30
31         }
32
33         public bool IsHeader(int index)
34         {
35             return HasHeader && index == 0;
36         }
37
38         public bool IsFooter(int index)
39         {
40             if (!HasFooter)
41             {
42                 return false;
43             }
44
45             if (HasHeader)
46             {
47                 return index == 1;
48             }
49
50             return index == 0;
51         }
52
53         public int GetPosition(object item)
54         {
55             return -1;
56         }
57
58         public object GetItem(int position)
59         {
60             throw new IndexOutOfRangeException("IItemSource is empty");
61         }
62     }
63 }