summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.ControlGallery.MacOS/CustomRenderers.cs
blob: ae0588965e880c3f8435c9b0fadc3ca287e30789 (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
using System;
using System.Collections.Generic;
using AppKit;
using CoreGraphics;
using Foundation;
using Xamarin.Forms;
using Xamarin.Forms.ControlGallery.MacOS;
using Xamarin.Forms.Controls.Issues;
using Xamarin.Forms.Platform.MacOS;

[assembly: ExportRenderer(typeof(NativeCell), typeof(NativeMacCellRenderer))]
[assembly: ExportRenderer(typeof(NativeListView2), typeof(NativeMacOSListViewRenderer))]
[assembly: ExportRenderer(typeof(NativeListView), typeof(NativeListViewRenderer))]
namespace Xamarin.Forms.ControlGallery.MacOS
{
	public class NativeMacOSListViewRenderer : ViewRenderer<NativeListView2, NSView>
	{
		NSTableView _nsTableView;
		public NativeMacOSListViewRenderer()
		{
		}

		protected override void OnElementChanged(ElementChangedEventArgs<NativeListView2> e)
		{
			base.OnElementChanged(e);

			if (Control == null)
			{
				var scroller = new NSScrollView
				{
					AutoresizingMask = NSViewResizingMask.HeightSizable | NSViewResizingMask.WidthSizable,
					DocumentView = _nsTableView = new NSTableView().AsListViewLook()
				};

				_nsTableView.RowHeight = 60;
				SetNativeControl(scroller);
			}

			if (e.OldElement != null)
			{
				// unsubscribe
			}

			if (e.NewElement != null)
			{
				// subscribe

				var s = new NativeiOSListViewSource(e.NewElement, _nsTableView);
				_nsTableView.Source = s;
			}
		}

		protected override void OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
		{
			base.OnElementPropertyChanged(sender, e);

			if (e.PropertyName == NativeListView.ItemsProperty.PropertyName)
			{
				// update the Items list in the UITableViewSource
				var s = new NativeiOSListViewSource(Element, _nsTableView);
				_nsTableView.Source = s;
			}
		}

		public override SizeRequest GetDesiredSize(double widthConstraint, double heightConstraint)
		{
			return Control.GetSizeRequest(widthConstraint, heightConstraint, 44, 44);
		}
	}

	public class NativeListViewRenderer : ViewRenderer<NativeListView, NSView>
	{
		public NativeListViewRenderer()
		{
		}
		NSTableView table;
		protected override void OnElementChanged(ElementChangedEventArgs<NativeListView> e)
		{
			base.OnElementChanged(e);

			if (Control == null)
			{
				var scroller = new NSScrollView
				{
					AutoresizingMask = NSViewResizingMask.HeightSizable | NSViewResizingMask.WidthSizable,
					DocumentView = table = new NSTableView().AsListViewLook()
				};

				table.RowHeight = 60;

				SetNativeControl(scroller);
			}

			if (e.OldElement != null)
			{
				// unsubscribe
			}

			if (e.NewElement != null)
			{
				// subscribe

				var s = new NativeListViewSource(e.NewElement, table);
				table.Source = s;
			}
		}

		protected override void OnElementPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
		{
			base.OnElementPropertyChanged(sender, e);

			if (e.PropertyName == NativeListView.ItemsProperty.PropertyName)
			{
				// update the Items list in the UITableViewSource
				var s = new NativeListViewSource(Element, table);
				table.Source = s;
			}
		}

		public override SizeRequest GetDesiredSize(double widthConstraint, double heightConstraint)
		{
			return Control.GetSizeRequest(widthConstraint, heightConstraint, 44, 44);
		}
	}

	public class NativeiOSListViewSource : NSTableViewSource
	{
		IList<DataSource> _tableItems;
		NativeListView2 _listView;
		readonly NSTableView _nsTableView;
		readonly NSString _cellIdentifier = new NSString("TableCell");

		public IEnumerable<DataSource> Items
		{
			set { _tableItems = new List<DataSource>(value); }
		}

		public NativeiOSListViewSource(NativeListView2 view, NSTableView nsTableView)
		{
			_tableItems = new List<DataSource>(view.Items);
			_listView = view;
			_nsTableView = nsTableView;
		}

		public override nint GetRowCount(NSTableView tableView)
		{
			return _tableItems.Count;
		}

		public override void SelectionDidChange(NSNotification notification)
		{
			var selectedRow = (int)_nsTableView.SelectedRow;
			if (selectedRow == -1)
				return;
			_listView.NotifyItemSelected(_tableItems[selectedRow]);
			Console.WriteLine("Row " + selectedRow.ToString() + " selected");
			_nsTableView.DeselectRow(selectedRow);
		}

		public override NSView GetViewForItem(NSTableView tableView, NSTableColumn tableColumn, nint row)
		{
			NativeMacOsCell cell = tableView.MakeView(_cellIdentifier, tableView) as NativeMacOsCell;

			if (cell == null)
			{
				cell = new NativeMacOsCell(_cellIdentifier);
			}
			int rowNumber = (int)row;
			if (string.IsNullOrWhiteSpace(_tableItems[rowNumber].ImageFilename))
			{
				cell.UpdateCell(_tableItems[rowNumber].Name
					, _tableItems[rowNumber].Category
					, null);
			}
			else
			{
				cell.UpdateCell(_tableItems[rowNumber].Name
					, _tableItems[rowNumber].Category
					, new NSImage("Images/" + _tableItems[rowNumber].ImageFilename + ".jpg"));
			}

			return cell;
		}
	}

	public class NativeListViewSource : NSTableViewSource
	{
		// declare vars
		IList<string> _tableItems;
		string _cellIdentifier = "TableCell";
		NativeListView _listView;
		readonly NSTableView _nsTableView;

		public IEnumerable<string> Items
		{
			set
			{
				_tableItems = new List<string>(value);
			}
		}

		public NativeListViewSource(NativeListView view, NSTableView nsTableView)
		{
			_tableItems = new List<string>(view.Items);
			_listView = view;
			_nsTableView = nsTableView;
		}

		public override nint GetRowCount(NSTableView tableView)
		{
			return _tableItems.Count;
		}

		public override void SelectionDidChange(NSNotification notification)
		{
			var selectedRow = (int)_nsTableView.SelectedRow;
			if (selectedRow == -1)
				return;
			_listView.NotifyItemSelected(_tableItems[selectedRow]);
			Console.WriteLine("Row " + selectedRow.ToString() + " selected");
			_nsTableView.DeselectRow(selectedRow);
		}

		public override NSView GetViewForItem(NSTableView tableView, NSTableColumn tableColumn, nint row)
		{
			var cell = tableView.MakeView(_cellIdentifier, tableView);

			if (cell == null)
			{
				cell = new NSView(new CGRect(0, 0, tableView.Frame.Width, tableView.RowHeight));
				var textLabel = new NSTextField(new CGRect(1, 1, tableView.Frame.Width, tableView.RowHeight - 10));
				cell.AddSubview(textLabel);
			}
			var label = cell.Subviews[0] as NSTextField;
			label.StringValue = _tableItems[(int)row];
			return cell;
		}
	}

	public class NativeMacCellRenderer : ViewCellRenderer
	{
		static NSString s_rid = new NSString("NativeCell");

		public NativeMacCellRenderer()
		{
		}

		public override NSView GetCell(Cell item, NSView reusableView, NSTableView tv)
		{
			var x = (NativeCell)item;
			Console.WriteLine(x);

			NativeMacOsCell c = reusableView as NativeMacOsCell;

			if (c == null)
			{
				c = new NativeMacOsCell(s_rid);
			}

			NSImage i = null;
			if (!string.IsNullOrWhiteSpace(x.ImageFilename))
			{
				i = new NSImage("Images/" + x.ImageFilename + ".jpg");
			}

			base.WireUpForceUpdateSizeRequested(item, c, tv);

			c.UpdateCell(x.Name, x.Category, i);

			return c;
		}
	}

	public class NativeMacOsCell : NSView
	{
		NSTextField _headingLabel;
		NSTextField _subheadingLabel;
		NSImageView _imageView;

		public NativeMacOsCell() : this(new NSString("NativeMacOsCell"))
		{
		}
		public NativeMacOsCell(NSString cellId)
		{
			Identifier = cellId;
			WantsLayer = true;
			Layer.BackgroundColor = NSColor.FromRgb(218, 255, 127).CGColor;

			_imageView = new NSImageView();

			_headingLabel = new NSTextField()
			{
				Font = NSFont.FromFontName("Cochin-BoldItalic", 22f),
				TextColor = NSColor.FromRgb(127, 51, 0),
				BackgroundColor = NSColor.Clear
			};

			_subheadingLabel = new NSTextField()
			{
				Font = NSFont.FromFontName("AmericanTypewriter", 12f),
				TextColor = NSColor.FromRgb(38, 127, 0),
				Alignment = NSTextAlignment.Center,
				BackgroundColor = NSColor.Clear
			};

			AddSubview(_headingLabel);
			AddSubview(_subheadingLabel);
			AddSubview(_imageView);
		}

		public void UpdateCell(string caption, string subtitle, NSImage image)
		{
			_imageView.Image = image;
			_headingLabel.StringValue = caption;
			_subheadingLabel.StringValue = subtitle;
		}

		public override void Layout()
		{
			base.Layout();

			_imageView.Frame = new CGRect(Bounds.Width - 63, 5, 33, 33);
			_headingLabel.Frame = new CGRect(5, 4, Bounds.Width - 63, 25);
			_subheadingLabel.Frame = new CGRect(100, 18, 100, 20);
		}
	}

	public static class NSTableViewExtensions
	{
		public static NSTableView AsListViewLook(this NSTableView self)
		{
			self.SelectionHighlightStyle = NSTableViewSelectionHighlightStyle.SourceList;

			self.AllowsColumnReordering = false;
			self.AllowsColumnResizing = false;
			self.AllowsColumnSelection = false;

			//this is needed .. can we go around it ?
			self.AddColumn(new NSTableColumn("1"));
			//this line hides the header by default
			self.HeaderView = null;
			return self;
		}
	}

}