summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Native/ListView.cs
blob: edf8300f04230570a7dc53ae99335744a01a67f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.Reflection;
using ElmSharp;
using EColor = ElmSharp.Color;
using EBox = ElmSharp.Box;

namespace Xamarin.Forms.Platform.Tizen.Native
{
	/// <summary>
	/// Type alias which identifies list of cells whose data model was transformed by Xamarin.
	/// </summary>
	using GroupList = TemplatedItemsList<ItemsView<Cell>, Cell>;

	/// <summary>
	/// Native ListView implementation for Xamarin renderer
	/// </summary>
	/// <remarks> 
	/// This internally uses GenList class.
	/// One should note that it is optimized for displaying many elements which may be
	/// unavailable at first. This means that only currently visible elements will be constructed.
	/// Whenever element disappears from visible space its content is destroyed for time being.
	/// This is carried out by so called Cell Handlers.
	/// </remarks>
	public class ListView : GenList
	{
		/// <summary>
		/// ItemContext helper class. This represents the association between Xamarin.Forms.Cell and
		/// native elements. It also stores useful context for them.
		/// </summary>
		public class ItemContext
		{
			public ItemContext()
			{
				Item = null;
				Cell = null;
				ListOfSubItems = null;
			}

			public GenListItem Item;
			public Cell Cell;
			public bool IsGroupItem;
			internal TemplatedItemsList<ItemsView<Cell>, Cell> ListOfSubItems;
		}

		/// <summary>
		/// The item context list for each added element.
		/// </summary>
		readonly List<ItemContext> _itemContextList = new List<ItemContext>();

		/// <summary>
		/// Registered cell handlers.
		/// </summary>
		protected readonly IDictionary<Type, CellHandler> _cellHandlers = new Dictionary<Type, CellHandler>();

		/// <summary>
		/// Registered group handlers.
		/// </summary>
		protected readonly IDictionary<Type, CellHandler> _groupCellHandlers = new Dictionary<Type, CellHandler>();

		/// <summary>
		/// The header context.
		/// </summary>
		ItemContext _headerContext;

		/// <summary>
		/// The header element.
		/// </summary>
		VisualElement _headerElement;

		/// <summary>
		/// The footer context.
		/// </summary>
		ItemContext _footerContext;

		/// <summary>
		/// The footer element.
		/// </summary>
		VisualElement _footerElement;

		/// <summary>
		/// The item class for header and footer.
		/// </summary>
		GenItemClass _headerFooterItemClass = null;

		/// <summary>
		/// Gets or sets a value indicating whether this instance has grouping enabled.
		/// </summary>
		/// <value><c>true</c> if this instance has grouping enabled.</value>
		public bool IsGroupingEnabled { get; set; }

		/// <summary>
		/// Constructor of ListView native control.
		/// </summary>
		/// <param name="parent">ElmSharp object which is parent of particular list view</param>
		public ListView(EvasObject parent)
			: base(parent)
		{
			_cellHandlers[typeof(TextCell)] = new TextCellHandler();
			_cellHandlers[typeof(ViewCell)] = new ViewCellHandler();
			_cellHandlers[typeof(ImageCell)] = new ImageCellHandler();
			_cellHandlers[typeof(SwitchCell)] = new SwitchCellHandler();
			_cellHandlers[typeof(EntryCell)] = new EntryCellHandler();

			_groupCellHandlers[typeof(TextCell)] = new GroupTextCellHandler();

			ItemRealized += OnItemAppear;
			ItemUnrealized += OnItemDisappear;
		}

		/// <summary>
		/// Gets the item context based on Cell item.
		/// </summary>
		/// <returns>The item context.</returns>
		/// <param name="cell">Cell for which context should be found.</param>
		internal ItemContext GetItemContext(Cell cell)
		{
			if (cell == null)
			{
				return null;
			}
			else
			{
				return _itemContextList.Find(X => X.Cell == cell);
			}
		}

		/// <summary>
		/// Sets the HasUnevenRows property.
		/// </summary>
		/// <param name="hasUnevenRows">If <c>true</c>, the list will allow uneven sizes for its rows.</param>
		public void SetHasUnevenRows(bool hasUnevenRows)
		{
			Homogeneous = !hasUnevenRows;
			UpdateRealizedItems();
		}

		/// <summary>
		/// Adds elements to the list and defines its presentation based on Cell type.
		/// </summary>
		/// <param name="_source">IEnumerable on Cell collection.</param>
		/// <param name="beforeCell">Cell before which new items will be placed. 
		/// Null value may also be passed as this parameter, which results in appending new items to the end.
		/// </param>
		public void AddSource(IEnumerable _source, Cell beforeCell = null)
		{
			foreach (var data in _source)
			{
				if (data is GroupList)
				{
					GroupList groupList = data as GroupList;
					AddGroupItem(groupList, beforeCell);
					foreach (var item in groupList)
					{
						AddItem(item as Cell, groupList.HeaderContent);
					}
				}
				else
				{
					AddItem(data as Cell, null, beforeCell);
				}
			}
		}

		/// <summary>
		/// Deletes all items from a given group.
		/// </summary>
		/// <param name="group">Group of items to be deleted.</param>
		internal void ResetGroup(GroupList group)
		{
			var items = _itemContextList.FindAll(x => x.ListOfSubItems == group && x.Cell != group.HeaderContent);
			foreach (var item in items)
			{
				item.Item?.Delete();
			}
		}

		/// <summary>
		/// Adds items to the group.
		/// </summary>
		/// <param name="itemGroup">Group to which elements will be added.</param>
		/// <param name="newItems">New list items to be added.</param>
		/// <param name="cellBefore">A reference to the Cell already existing in a ListView.
		///  Newly added cells will be put just before this cell.</param>
		public void AddItemsToGroup(IEnumerable itemGroup, IEnumerable newItems, Cell cellBefore = null)
		{
			ItemContext groupCtx = GetItemContext((itemGroup as GroupList)?.HeaderContent);
			if (groupCtx != null)
			{
				foreach (var item in newItems)
				{
					AddItem(item as Cell, groupCtx.Cell, cellBefore);
				}
			}
		}

		/// <summary>
		/// Removes the specified cells.
		/// </summary>
		/// <param name="cells">Cells to be removed.</param>
		public void Remove(IEnumerable cells)
		{
			foreach (var data in cells)
			{
				var group = data as GroupList;
				if (group != null)
				{
					ItemContext groupCtx = GetItemContext(group.HeaderContent);
					Remove(groupCtx.ListOfSubItems);
					groupCtx.Item.Delete();
				}
				else
				{
					ItemContext itemCtx = GetItemContext(data as Cell);
					itemCtx?.Item?.Delete();
				}
			}
		}

		/// <summary>
		/// Scrolls the list to a specified cell.
		/// </summary>
		/// <remarks>
		/// Different scrolling behaviors are also possible. The element may be positioned in the center,
		/// top or bottom of the visible part of the list depending on the value of the <c>position</c> parameter.
		/// </remarks>
		/// <param name="cell">Cell which will be displayed after scrolling .</param>
		/// <param name="position">This will defines scroll to behavior based on ScrollToPosition values.</param>
		/// <param name="animated">If <c>true</c>, scrolling will be animated. Otherwise the cell will be moved instantaneously.</param>
		public void ApplyScrollTo(Cell cell, ScrollToPosition position, bool animated)
		{
			GenListItem item = GetItemContext(cell)?.Item;
			if (item != null)
				this.ScrollTo(item, position.ToNative(), animated);
		}

		/// <summary>
		/// Selects the specified cell.
		/// </summary>
		/// <param name="cell">Cell to be selected.</param>
		public void ApplySelectedItem(Cell cell)
		{
			GenListItem item = GetItemContext(cell)?.Item;
			if (item != null)
				item.IsSelected = true;
		}

		/// <summary>
		/// Sets the header.
		/// </summary>
		/// <param name="header">Header of the list.</param>
		public void SetHeader(VisualElement header)
		{
			if (header == null)
			{
				if (HasHeader())
				{
					RemoveHeader();
				}

				return;
			}

			GenItemClass headerTemplate = GetHeaderFooterItemClass();

			_headerElement = header;
			if (HasHeader())
			{
				FirstItem.UpdateItemClass(headerTemplate, header);
			}
			else
			{
				_headerContext = new ItemContext();
				_headerContext.Item = _itemContextList.Count > 0 ? InsertBefore(headerTemplate, header, FirstItem) : Append(headerTemplate, header);
				_headerContext.Item.SelectionMode = GenListSelectionMode.None;
				_headerContext.Item.Deleted += HeaderDeletedHandler;
				_itemContextList.Insert(0, _headerContext);
			}
		}

		/// <summary>
		/// Sets the footer.
		/// </summary>
		/// <param name="footer">Footer of the list.</param>
		public void SetFooter(VisualElement footer)
		{
			if (footer == null)
			{
				if (HasFooter())
				{
					RemoveFooter();
				}
				return;
			}

			GenItemClass footerTemplate = GetHeaderFooterItemClass();

			_footerElement = footer;
			if (HasFooter())
			{
				_footerContext.Item.UpdateItemClass(footerTemplate, footer);
			}
			else
			{
				_footerContext = new ItemContext();
				_footerContext.Item = Append(footerTemplate, footer);
				_footerContext.Item.SelectionMode = GenListSelectionMode.None;
				_footerContext.Item.Deleted += FooterDeletedHandler;
				_itemContextList.Add(_footerContext);
			}
		}

		/// <summary>
		/// Removes the header.
		/// </summary>
		public void RemoveHeader()
		{
			_itemContextList.Remove(_headerContext);
			_headerContext?.Item?.Delete();
			_headerContext = null;
			_headerElement = null;
		}

		/// <summary>
		/// Removes the footer.
		/// </summary>
		public void RemoveFooter()
		{
			_itemContextList.Remove(_footerContext);
			_footerContext?.Item?.Delete();
			_footerContext = null;
			_footerElement = null;
		}

		/// <summary>
		/// Determines whether this instance has a header.
		/// </summary>
		/// <returns><c>true</c> if the header is present.</returns>
		public bool HasHeader()
		{
			return _headerContext != null;
		}

		/// <summary>
		/// Determines whether this instance has a footer.
		/// </summary>
		/// <returns><c>true</c> if the footer is present.</returns>
		public bool HasFooter()
		{
			return _footerContext != null;
		}

		/// <summary>
		/// Gets the header.
		/// </summary>
		/// <returns>The header.</returns>
		public VisualElement GetHeader()
		{
			return _headerElement;
		}

		/// <summary>
		/// Gets the footer.
		/// </summary>
		/// <returns>The footer.</returns>
		public VisualElement GetFooter()
		{
			return _footerElement;
		}

		/// <summary>
		/// Handles the header deleted event.
		/// </summary>
		/// <param name="sender">Sender of the event.</param>
		/// <param name="e">Empty argument.</param>
		void HeaderDeletedHandler(object sender, EventArgs e)
		{
			_itemContextList.Remove(_headerContext);
			_headerContext = null;
		}

		/// <summary>
		/// Handles the footer deleted event.
		/// </summary>
		/// <param name="sender">Sender of the event.</param>
		/// <param name="e">Empty argument.</param>
		void FooterDeletedHandler(object sender, EventArgs e)
		{
			_itemContextList.Remove(_footerContext);
			_footerContext = null;
		}

		/// <summary>
		/// Called every time an object gets realized.
		/// </summary>
		/// <param name="sender">Sender of the event.</param>
		/// <param name="evt">GenListItemEventArgs.</param>
		void OnItemAppear(object sender, GenListItemEventArgs evt)
		{
			ItemContext itemContext = (evt.Item.Data as ItemContext);

			if (itemContext != null && itemContext.Cell != null)
			{
				(itemContext.Cell as ICellController).SendAppearing();
			}
		}

		/// <summary>
		/// Called every time an object gets unrealized.
		/// </summary>
		/// <param name="sender">Sender of the event.</param>
		/// <param name="evt">GenListItemEventArgs.</param>
		void OnItemDisappear(object sender, GenListItemEventArgs evt)
		{
			ItemContext itemContext = (evt.Item.Data as ItemContext);
			if (itemContext != null && itemContext.Cell != null)
			{
				(itemContext.Cell as ICellController).SendDisappearing();
				GetCellHandler(itemContext.Cell, itemContext.IsGroupItem)?.HandleUnrealizedView(evt.Item);
			}
		}


		/// <summary>
		/// A convenience shorthand method for derivate classes.
		/// </summary>
		/// <param name="cell">Cell to be added.</param>
		protected void AddCell(Cell cell)
		{
			AddItem(cell);
		}

		/// <summary>
		/// Gets the cell handler for given cell type.
		/// </summary>
		/// <returns>The cell handler.</returns>
		/// <param name="cell">Cell to be added.</param>
		/// <param name="isGroup">If <c>true</c>, then group handlers will be included in the lookup as well.</param>
		CellHandler GetCellHandler(Cell cell, bool isGroup = false)
		{
			Type type = cell.GetType();

			while (true)
			{
				if (isGroup && _groupCellHandlers.ContainsKey(type))
					return _groupCellHandlers[type];

				if (_cellHandlers.ContainsKey(type))
					return _cellHandlers[type];

				type = type.GetTypeInfo().BaseType;
				if (type == null)
					break;
			}

			Log.Error("Cell type is not handled: {0}", cell.GetType());
			throw new ArgumentNullException("Unsupported cell type");
		}

		/// <summary>
		/// Adds the group item. Group item is actually of class GroupList because
		/// group item has sub items (can be zero) which needs to be added.
		/// If beforeCell is not null, new group will be added just before it.
		/// </summary>
		/// <param name="groupList">Group to be added.</param>
		/// <param name="beforeCell">Before cell.</param>
		void AddGroupItem(GroupList groupList, Cell beforeCell = null)
		{
			Cell groupCell = groupList.HeaderContent;
			CellHandler groupHandler = GetCellHandler(groupCell, true);
			ItemContext groupItemContext = new ItemContext();
			groupItemContext.Cell = groupCell;

			if (beforeCell != null)
			{
				GenListItem beforeItem = GetItemContext(beforeCell)?.Item;
				groupItemContext.Item = InsertBefore(groupHandler.Class, groupItemContext, beforeItem, GenListItemType.Group);
			}
			else
			{
				groupItemContext.Item = Append(groupHandler.Class, groupItemContext, GenListItemType.Group);
			}

			groupItemContext.Item.SelectionMode = GenListSelectionMode.None;
			groupItemContext.IsGroupItem = true;

			groupItemContext.ListOfSubItems = groupList;
			groupItemContext.Item.Deleted += ItemDeletedHandler;
			_itemContextList.Add(groupItemContext);
		}

		/// <summary>
		/// Adds the item.
		/// </summary>
		/// <param name="cell">Cell to be added.</param>
		/// <param name="groupCell">Group to which the new item should belong.</param>
		/// <remark>If the value of <c>groupCell</c> is not null, the new item will be put into the requested group. </remark>
		/// <param name="beforeCell">The cell before which the new item should be placed.</param>
		/// <remarks> If the value of <c>beforeCell</c> is not null, the new item will be placed just before the requested cell. </remarks>
		void AddItem(Cell cell, Cell groupCell = null, Cell beforeCell = null)
		{
			CellHandler handler = GetCellHandler(cell);
			GenListItem parentItem = null;

			ItemContext itemContext = new ItemContext();
			itemContext.Cell = cell;

			if (IsGroupingEnabled && groupCell != null)
			{
				var groupContext = GetItemContext(groupCell);
				itemContext.ListOfSubItems = groupContext.ListOfSubItems;
				parentItem = groupContext.Item;
			}

			if (beforeCell != null)
			{
				GenListItem beforeItem = GetItemContext(beforeCell)?.Item;
				itemContext.Item = InsertBefore(handler.Class, itemContext, beforeItem, GenListItemType.Normal, parentItem);
			}
			else
			{
				itemContext.Item = Append(handler.Class, itemContext, GenListItemType.Normal, parentItem);
			}

			itemContext.Item.SelectionMode = GenListSelectionMode.Always;

			cell.PropertyChanged += OnCellPropertyChanged;
			(cell as ICellController).ForceUpdateSizeRequested += OnForceUpdateSizeRequested;
			itemContext.Item.Deleted += ItemDeletedHandler;
			_itemContextList.Add(itemContext);
		}

		/// <summary>
		/// Handles item deleted event.
		/// </summary>
		/// <param name="sender">Sender of the event.</param>
		/// <param name="e">Empty argument.</param>
		void ItemDeletedHandler(object sender, EventArgs e)
		{
			ItemContext itemContext = (sender as GenListItem).Data as ItemContext;
			if (itemContext.Cell != null)
			{
				itemContext.Cell.PropertyChanged -= OnCellPropertyChanged;
				(itemContext.Cell as ICellController).ForceUpdateSizeRequested -= OnForceUpdateSizeRequested;
			}
			_itemContextList.Remove(itemContext);
		}

		/// <summary>
		/// Invoked whenever the properties of data model change.
		/// </summary>
		/// <param name="sender">Sender of the event.</param>
		/// <param name="e">PropertyChangedEventArgs.</param>
		/// <remarks>
		/// The purpose of this method is to propagate these changes to the presentation layer.
		/// </remarks>
		void OnCellPropertyChanged(object sender, PropertyChangedEventArgs e)
		{
			var cell = sender as Cell;
			var context = GetItemContext(cell);

			GetCellHandler(cell, context.IsGroupItem)?.HandlePropertyChanged(cell, context.Item, e.PropertyName);
		}

		private void OnForceUpdateSizeRequested(object sender, EventArgs e)
		{
			var cell = sender as Cell;
			var itemContext = GetItemContext(cell);
			if (itemContext.Item != null)
				itemContext.Item.Update();
		}

		/// <summary>
		/// Gets the item class used for header and footer cells.
		/// </summary>
		/// <returns>The header and footer item class.</returns>
		GenItemClass GetHeaderFooterItemClass()
		{
			if (_headerFooterItemClass == null)
			{
				_headerFooterItemClass = new GenItemClass("full")
				{
					GetContentHandler = (data, part) =>
					{
						VisualElement element = data as VisualElement;
						var renderer = Platform.GetOrCreateRenderer(element);
						renderer.NativeView.MinimumHeight = (int)element.MinimumHeightRequest;
						return renderer.NativeView;
					}
				};
			}
			return _headerFooterItemClass;
		}

		/// <summary>
		/// Base class for cell handlers.
		/// </summary>
		protected abstract class CellHandler
		{
			/// <summary>
			/// The stored objects ensure that content of list items will live just as long as it is needed and not
			/// being garbage collected since it is necessary by native layer.
			/// </summary>
			readonly IDictionary<object, List<EvasObject>> _storedObjects = new Dictionary<object, List<EvasObject>>();

			/// <summary>
			/// Gets the item class.
			/// </summary>
			/// <value>The item class.</value>
			public GenItemClass Class
			{
				get;
				private set;
			}

			/// <summary>
			/// Initializes a new instance of the <see cref="Xamarin.Forms.Platform.Tizen.Native.ListView.CellHandler"/> class.
			/// </summary>
			/// <param name="style">A string specifying the style of a CellHandler.</param>
			/// <param name="callType">Call type.</param>
			protected CellHandler(string style, CellCallType callType)
			{
				Class = new GenItemClass(style)
				{
					GetTextHandler = (callType & CellCallType.Text) == CellCallType.Text ? GetTextHandler : (GenItemClass.GetTextDelegate)null,
					GetContentHandler = (callType & CellCallType.Content) == CellCallType.Content ? OnGetContent : (GenItemClass.GetContentDelegate)null,
					DeleteHandler = OnDelete,
				};
			}

			/// <summary>
			/// This indicates handler types used by the item class.
			/// </summary>
			[FlagsAttribute]
			protected enum CellCallType
			{
				Text = 1,
				Content = 2,
				Both = Text | Content
			}

			/// <summary>
			/// Handles the property changed event.
			/// </summary>
			/// <param name="cell">The Cell whose property changed event will be handled.</param>
			/// <param name="item">The native item to which the property change event will be propagated.</param>
			/// <param name="property">Bindable property name supported by the cell.</param>
			public void HandlePropertyChanged(Cell cell, GenListItem item, string property)
			{
				OnPropertyChanged(cell, item, property);
			}

			/// <summary>
			/// Handles the unrealized view event.
			/// </summary>
			/// <param name="item">Item which disappeared.</param>
			public void HandleUnrealizedView(GenListItem item)
			{
				RemoveAllEvasObjects(item.Data);
			}

			/// <summary>
			/// Handles the property changed event.
			/// </summary>
			/// <param name="cell">The Cell whose property changed event will be handled.</param>
			/// <param name="item">The native item to which the property change event will be propagated.</param>
			/// <param name="property">Bindable property name supported by the cell.</param>
			protected virtual void OnPropertyChanged(Cell cell, GenListItem item, string property)
			{
				if (property == Cell.IsEnabledProperty.PropertyName)
				{
					item.IsEnabled = cell.IsEnabled;
				}
			}

			/// <summary>
			/// Callback invoked for all the text-based cells.
			/// </summary>
			/// <param name="data">It is Xamarin.Forms.Cell instance from which the content will be created.</param>
			/// <param name="part">Describes the exact place in the layout (defined in edj files) where content will be added.</param>
			protected virtual Span OnGetText(object data, string part)
			{
				return null;
			}

			/// <summary>
			/// Callback invoked for all non text-based cells.
			/// </summary>
			/// <param name="data">Xamarin.Forms.Cell instance from which the content will be created.</param>
			/// <param name="part">Describes the exact place in the layout (defined in edj files) where content will be added.</param>
			protected virtual EvasObject OnGetContent(object data, string part)
			{
				return null;
			}

			/// <summary>
			/// Handles the deleted event.
			/// </summary>
			/// <param name="data">Xamarin.Forms.Cell instance whose content is being disposed of.</param>
			protected virtual void OnDelete(object data)
			{
				RemoveAllEvasObjects(data);
			}

			/// <summary>
			/// Gets the height of the row.
			/// </summary>
			/// <returns>The row height.</returns>
			/// <param name="cell">Cell whose row height is to be calculated.</param>
			protected int GetRowHeight(Cell cell)
			{
				return cell.RenderHeight > 0 ? (int)cell.RenderHeight : FindCellContentHeight(cell);
			}

			private int FindCellContentHeight(Cell cell)
			{
				if (cell is ViewCell)
				{
					var parentWidth = (cell.Parent as VisualElement).Width;
					var view = (cell as ViewCell).View;
					return (int)view.Measure(parentWidth, double.PositiveInfinity).Request.Height;
				}
				else
					return -1;
			}

			/// <summary>
			/// Stores the content parts.
			/// </summary>
			/// <param name="key">Cell which uses the native parts.</param>
			/// <param name="obj">Native elements which are being used to construct given cell.</param>
			protected void StoreEvasObject(object key, EvasObject obj)
			{
				List<EvasObject> list;

				if (!_storedObjects.TryGetValue(key, out list))
				{
					list = new List<EvasObject>();
					_storedObjects.Add(key, list);
				}

				list.Add(obj);
			}

			/// <summary>
			/// Allows the access to the content parts.
			/// </summary>
			/// <returns>Native elements which are being used to construct given cell.</returns>
			/// <param name="key">Cell which uses the native parts.</param>
			protected IReadOnlyList<EvasObject> GetEvasObjects(object key)
			{
				List<EvasObject> list;
				_storedObjects.TryGetValue(key, out list);

				return list;
			}

			/// <summary>
			/// Removes all content parts.
			/// </summary>
			/// <param name="key">Cell which uses the native parts.</param>
			protected void RemoveAllEvasObjects(object key)
			{
				_storedObjects.Remove(key);
			}

			/// <summary>
			/// Handles the GetText callback.
			/// </summary>
			/// <returns>The text handler.</returns>
			/// <param name="data">Xamarin.Forms.Cell from which the content will be created.</param>
			/// <param name="part">Describes the exact place in the layout (defined in edj files) where content will be added.</param>
			string GetTextHandler(object data, string part)
			{
				var span = OnGetText(data, part);
				return span == null ? "" : span.GetMarkupText();
			}
		}

		/// <summary>
		/// View cell handler. It is used to represent custom ViewCells.
		/// </summary>
		protected class ViewCellHandler : CellHandler
		{
			/// <summary>
			/// Initializes a new instance of the <see cref="Xamarin.Forms.Platform.Tizen.Native.ListView.ViewCellHandler"/> class.
			/// </summary>
			public ViewCellHandler()
				: base("full", CellCallType.Content)
			{
			}

			/// <summary>
			/// Handles changes of properties.
			/// </summary>
			/// <param name="cell">The Cell whose property changed event will be handled.</param>
			/// <param name="item">The native item to which the property change event will be propagated.</param>
			/// <param name="property">Bindable property name supported by the cell.</param>
			protected override void OnPropertyChanged(Cell cell, GenListItem item, string property)
			{
				if (property == "View")
				{
					item.Update();
				}
				else
				{
					base.OnPropertyChanged(cell, item, property);
				}
			}

			/// <summary>
			/// Callback creating content for ViewCell.
			/// </summary>
			/// <param name="data">Xamarin.Forms.Cell instance from which the content will be created.</param>
			/// <param name="part">Describes the exact place in the layout (defined in edj files) where content will be added.</param>
			protected override EvasObject OnGetContent(object data, string part)
			{
				if (part == "elm.swallow.content")
				{
					var cell = ((data as ItemContext)?.Cell as ViewCell);
					if (cell != null)
					{
						var renderer = Platform.GetOrCreateRenderer(cell.View);

						renderer.NativeView.MinimumHeight = GetRowHeight(cell);
						return renderer.NativeView;
					}
					return null;
				}
				else
				{
					return null;
				}
			}
		}

		/// <summary>
		/// Base class for custom text-based cells' handlers.
		/// </summary>
		protected abstract class TextHandler : CellHandler
		{
			/// <summary>
			/// The default text color.
			/// </summary>
			static readonly EColor s_defaultTextColor = EColor.Black;

			/// <summary>
			/// Holds formatted text.
			/// </summary>
			readonly Span _span = new Span();

			/// <summary>
			/// Initializes a new instance of the <see cref="Xamarin.Forms.Platform.Tizen.Native.ListView.TextHandler"/> class.
			/// </summary>
			/// <param name="style">Specifies the style of a TextHandler.</param>
			/// <param name="callType">Describes the set of callbacks supported by the handler.</param>
			protected TextHandler(string style, CellCallType callType)
				: base(style, callType)
			{
			}

			/// <summary>
			/// Creates a Span object containing formatted text corresponding to the one passed as a parameter.
			/// </summary>
			/// <returns>Span object containing the formatted text.</returns>
			/// <param name="text">Raw text.</param>
			protected Span GetSpan(string text)
			{
				return GetSpan(text, Xamarin.Forms.Color.Default);
			}

			/// <summary>
			/// Creates a Span object containing formatted text corresponding to the one passed as a parameter.
			/// The formatting includes the specified color.
			/// </summary>
			/// <returns>The span.</returns>
			/// <param name="text">Raw text.</param>
			/// <param name="color">Text color.</param>
			protected Span GetSpan(string text, Color color)
			{
				_span.Text = text;
				_span.ForegroundColor = color.IsDefault ? s_defaultTextColor : color.ToNative();

				return _span;
			}
		}

		/// <summary>
		/// Group text cell handler.
		/// </summary>
		protected class GroupTextCellHandler : TextCellHandler
		{
			const string _detailPart = "elm.text.end";

			public GroupTextCellHandler() : base("group_index", detailPart : _detailPart)
			{
			}
		}

		/// <summary>
		/// Text cell handler. This is used for representing TextCell.
		/// </summary>
		protected class TextCellHandler : TextHandler
		{
			/// <summary>
			/// EDJ hardcoded internals.
			/// </summary>
			const string _textPart = "elm.text";
			readonly string _detailPart;

			/// <summary>
			/// Initializes a new instance of the <see cref="Xamarin.Forms.Platform.Tizen.Native.ListView.TextCellHandler"/> class.
			/// </summary>
			public TextCellHandler()
				: this("double_label")
			{
			}

			/// <summary>
			/// Initializes a new instance of the <see cref="Xamarin.Forms.Platform.Tizen.Native.ListView.TextCellHandler"/> class.
			/// </summary>
			/// <param name="style">Specifies the style of a TextCellHandler.</param>
			/// <param name="calltype">Describes the set of callbacks supported by this handler.</param>
			/// <param name="detailPart">Describes the exact place in the layout (defined in edj files) where content will be added.</param>
			protected TextCellHandler(string style, CellCallType calltype = CellCallType.Text, string detailPart = "elm.text.sub")
				: base(style, calltype)
			{
				_detailPart = detailPart;
			}

			/// <summary>
			/// Handles properties change.
			/// </summary>
			/// <param name="cell">The Cell whose property changed event will be handled.</param>
			/// <param name="item">The native item to which the property change event will be propagated.</param>
			/// <param name="property">Bindable property name supported by cell.</param>
			protected override void OnPropertyChanged(Cell cell, GenListItem item, string property)
			{
				if (property == TextCell.TextProperty.PropertyName ||
					property == TextCell.TextColorProperty.PropertyName ||
					property == TextCell.DetailProperty.PropertyName ||
					property == TextCell.DetailColorProperty.PropertyName)
				{
					item.Update();
				}
				else
				{
					base.OnPropertyChanged(cell, item, property);
				}
			}

			/// <summary>
			/// Callback invoked for all text-based cells.
			/// </summary>
			/// <param name="data">Xamarin.Forms.Cell from which the content will be created.</param>
			/// <param name="part">Describes the exact place in the layout (defined in edj files) where content will be added.</param>
			protected override Span OnGetText(object data, string part)
			{
				var context = (ItemContext)data;
				var cell = (TextCell)(context.Cell);

				if (part == _textPart)
				{
					return GetSpan(cell.Text, cell.TextColor);
				}
				else if (part == _detailPart)
				{
					return GetSpan(cell.Detail, cell.DetailColor);
				}
				else
				{
					return null;
				}
			}
		}

		/// <summary>
		/// The cell with an image widget.
		/// </summary>
		protected class ImageCellHandler : TextCellHandler
		{
			/// <summary>
			/// The default height.
			/// </summary>
			const int _defaultHeight = 100;

			/// <summary>
			/// EDJ hardcoded internals.
			/// </summary>
			const string _imagePart = "elm.swallow.icon";

			/// <summary>
			/// Initializes a new instance of the <see cref="Xamarin.Forms.Platform.Tizen.Native.ListView.ImageCellHandler"/> class.
			/// </summary>
			public ImageCellHandler()
				: base("type1", CellCallType.Both)
			{
			}

			/// <summary>
			/// Handles properties change.
			/// </summary>
			/// <param name="cell">The Cell whose property changed event will be handled.</param>
			/// <param name="item">The native item to which the property change event will be propagated.</param>
			/// <param name="property">Bindable property name supported by the cell.</param>
			protected override void OnPropertyChanged(Cell cell, GenListItem item, string property)
			{
				if (property == ImageCell.ImageSourceProperty.PropertyName)
				{
					GetImage(item.Data)?.LoadFromImageSourceAsync((cell as ImageCell)?.ImageSource);
				}
				else
				{
					base.OnPropertyChanged(cell, item, property);
				}
			}

			/// <summary>
			/// Callback for the non-text-based cells.
			/// </summary>
			/// <param name="data">Xamarin.Forms.Cell instance from which the content will be created.</param>
			/// <param name="part">Describes the exact place in the layout (defined in edj files) where content will be added.</param>
			protected override EvasObject OnGetContent(object data, string part)
			{
				if (part == _imagePart)
				{
					var cell = (data as ItemContext)?.Cell as ImageCell;
					RemoveAllEvasObjects(data);
					var size = GetRowHeight(cell);

					if (size <= 0)
					{
						size = _defaultHeight;
					}

					var image = new Image(Forms.Context.MainWindow)
					{
						MinimumWidth = size,
						MinimumHeight = size
					};
					image.SetAlignment(-1.0, -1.0); // fill
					image.SetWeight(1.0, 1.0); // expand

					image.LoadFromImageSourceAsync(cell.ImageSource);

					StoreEvasObject(data, image);

					return image;
				}
				else
				{
					return null;
				}
			}

			/// <summary>
			/// Gets the image.
			/// </summary>
			/// <returns>The image.</returns>
			/// <param name="data">Xamarin.Forms.Cell from which image will be accessed.</param>
			Image GetImage(object data)
			{
				IReadOnlyList<EvasObject> list = GetEvasObjects(data);
				return list == null ? null : list[0] as Image;
			}
		}

		/// <summary>
		/// The cell with a switch widget.
		/// </summary>
		protected class SwitchCellHandler : TextHandler
		{
			/// <summary>
			/// Hard coded EDJ internals.
			/// </summary>
			const string _textPart = "elm.text";

			/// <summary>
			/// Initializes a new instance of the <see cref="Xamarin.Forms.Platform.Tizen.Native.ListView.SwitchCellHandler"/> class.
			/// </summary>
			public SwitchCellHandler()
				: base("end_icon", CellCallType.Both)
			{
			}

			/// <summary>
			/// Handles properties change.
			/// </summary>
			/// <param name="cell">The cell whose property changed event will be handled.</param>
			/// <param name="item">The native item to which the property change event will be propagated.</param>
			/// <param name="property">Bindable property name supported by the cell.</param>
			protected override void OnPropertyChanged(Cell cell, GenListItem item, string property)
			{
				if (property == SwitchCell.TextProperty.PropertyName)
				{
					item.Update();
				}
				else if (property == SwitchCell.OnProperty.PropertyName)
				{
					var checkbox = GetCheckbox(item.Data);
					if (checkbox != null)
					{
						checkbox.IsChecked = (cell as SwitchCell).On;
					}
				}
				else
				{
					base.OnPropertyChanged(cell, item, property);
				}
			}

			/// <summary>
			/// Callback invoked for every text-based cell.
			/// </summary>
			/// <param name="data">Xamarin.Forms.Cell instance from which the content will be created.</param>
			/// <param name="part">Describes the exact place in the layout (defined in edj files) where content will be added.</param>
			protected override Span OnGetText(object data, string part)
			{
				var cell = (data as ItemContext)?.Cell;
				if (part == _textPart && cell != null)
				{
					return GetSpan((cell as SwitchCell)?.Text);
				}
				else
				{
					return null;
				}
			}

			/// <summary>
			/// Callback invoked for every non text-based cell.
			/// </summary>
			/// <param name="data">Xamarin.Forms.Cell instance from which the content will be created.</param>
			/// <param name="part">Describes the exact place in the layout (defined in edj files) where content will be added.</param>
			protected override EvasObject OnGetContent(object data, string part)
			{
				if (part == "elm.swallow.end")
				{
					RemoveAllEvasObjects(data);

					var cell = (data as ItemContext)?.Cell as SwitchCell;
					var checkbox = new Check(Forms.Context.MainWindow)
					{
						Style = "on&off",
						IsChecked = cell.On,
					};

					checkbox.StateChanged += (sender, e) =>
					{
						cell.On = e.NewState;
					};

					checkbox.SetAlignment(-1.0, -1.0);  // fill
					checkbox.SetWeight(1.0, 1.0);  // expand

					StoreEvasObject(data, checkbox);

					return checkbox;
				}
				else
				{
					return null;
				}
			}

			/// <summary>
			/// Returns the Check element associated with the specified Cell.
			/// </summary>
			/// <returns>The checkbox.</returns>
			/// <param name="data">Xamarin.Forms.Cell instance from which the Check element will be accessed.</param>
			Check GetCheckbox(object data)
			{
				IReadOnlyList<EvasObject> list = GetEvasObjects(data);
				return list == null ? null : list[0] as Check;
			}
		}

		/// <summary>
		/// The cell with an Entry widget.
		/// </summary>
		protected class EntryCellHandler : ViewCellHandler
		{
			/// <summary>
			/// The default text color.
			/// </summary>
			static readonly EColor s_defaultTextColor = EColor.Black;

			/// <summary>
			/// The default height.
			/// </summary>
			const int _defaultHeight = 120;

			/// <summary>
			/// Handles the changing of Cell's properties.
			/// </summary>
			/// <param name="cell">The Cell whose property changed event will be handled.</param>
			/// <param name="item">The native item to which the property change event will be propagated.</param>
			/// <param name="property">Bindable property name supported by the cell.</param>
			protected override void OnPropertyChanged(Cell cell, GenListItem item, string property)
			{
				var entryCell = cell as EntryCell;

				if (property == EntryCell.HorizontalTextAlignmentProperty.PropertyName)
				{
					var entry = GetEntry(item.Data);
					if (entry != null)
					{
						entry.HorizontalTextAlignment = entryCell.HorizontalTextAlignment.ToNative();
					}
				}
				else if (property == EntryCell.KeyboardProperty.PropertyName)
				{
					var entry = GetEntry(item.Data);
					if (entry != null)
					{
						entry.Keyboard = entryCell.Keyboard.ToNative();
					}
				}
				else if (property == EntryCell.PlaceholderProperty.PropertyName)
				{
					var entry = GetEntry(item.Data);
					if (entry != null)
					{
						entry.Placeholder = entryCell.Placeholder;
					}
				}
				else if (property == EntryCell.TextProperty.PropertyName)
				{
					var entry = GetEntry(item.Data);
					if (entry != null)
					{
						entry.Text = entryCell.Text;
					}
				}
				else if (property == EntryCell.LabelProperty.PropertyName)
				{
					var label = GetLabel(item.Data);
					if (label != null)
					{
						label.Text = entryCell.Label;
					}
				}
				else if (property == EntryCell.LabelColorProperty.PropertyName)
				{
					var label = GetLabel(item.Data);
					if (label != null)
					{
						label.TextColor = GetLabelColor(entryCell);
					}
				}
				else
				{
					base.OnPropertyChanged(cell, item, property);
				}
			}

			/// <summary>
			/// This is callback for each non text-based cells.
			/// </summary>
			/// <param name="data">Xamarin.Forms.Cell instance from which the content will be created.</param>
			/// <param name="part">Ddescribes the exact place in the layout (defined in edj files) where content will be added.</param>
			protected override EvasObject OnGetContent(object data, string part)
			{
				if (part == "elm.swallow.content")
				{
					RemoveAllEvasObjects(data);

					var cell = (data as ItemContext)?.Cell as EntryCell;
					var height = GetRowHeight(cell);
					if (height <= 0)
					{
						height = _defaultHeight;
					}

					var box = new EBox(Forms.Context.MainWindow)
					{
						IsHorizontal = true,
						MinimumHeight = height,
					};
					box.SetAlignment(-1.0, -1.0);  // fill
					box.SetWeight(1.0, 1.0);  // expand

					var label = new Label(box)
					{
						Text = cell.Label,
						TextColor = GetLabelColor(cell),
					};
					label.SetAlignment(0.0, 0.5);
					label.SetWeight(0.0, 1.0);

					var entry = new Entry(box)
					{
						IsSingleLine = true,
						Text = cell.Text,
						TextColor = s_defaultTextColor,
						Placeholder = cell.Placeholder,
						PlaceholderColor = s_defaultTextColor,
						Keyboard = cell.Keyboard.ToNative(),
						HorizontalTextAlignment = cell.HorizontalTextAlignment.ToNative(),
					};
					entry.SetAlignment(-1.0, 0.5);
					entry.SetWeight(1.0, 1.0);

					box.PackEnd(label);
					box.PackEnd(entry);

					label.Show();
					entry.Show();

					entry.TextChanged += (sender, e) =>
					{
						cell.Text = e.NewTextValue;
					};
					entry.Activated += (sender, e) =>
					{
						(cell as IEntryCellController).SendCompleted();
					};

					StoreEvasObject(data, box);
					StoreEvasObject(data, label);
					StoreEvasObject(data, entry);

					return box;
				}
				else
				{
					return null;
				}
			}

			/// <summary>
			/// Gets the color of the label.
			/// </summary>
			/// <returns>The label color.</returns>
			/// <param name="cell">Xamarin.Forms.Cell from which label color will be accessed.</param>
			EColor GetLabelColor(EntryCell cell)
			{
				return cell.LabelColor.IsDefault ? s_defaultTextColor : cell.LabelColor.ToNative();
			}

			/// <summary>
			/// Gets the label.
			/// </summary>
			/// <returns>The label.</returns>
			/// <param name="data">Xamarin.Forms.Cell from which label will be accessed.</param>
			Native.Label GetLabel(object data)
			{
				IReadOnlyList<EvasObject> list = GetEvasObjects(data);
				return list == null ? null : list[1] as Native.Label;
			}

			/// <summary>
			/// Gets the entry.
			/// </summary>
			/// <returns>The entry.</returns>
			/// <param name="data">Xamarin.Forms.Cell from which entry will be accessed.</param>
			Native.Entry GetEntry(object data)
			{
				IReadOnlyList<EvasObject> list = GetEvasObjects(data);
				return list == null ? null : list[2] as Native.Entry;
			}
		}
	}
}