Welcome to mirror list, hosted at ThFree Co, Russian Federation.

PropertyList.cs « Xamarin.PropertyEditing.Mac - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 21c833f75cb90b258f57911d52801e729adee89c (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
using System;
using System.ComponentModel;
using AppKit;
using CoreGraphics;
using Foundation;

using Xamarin.PropertyEditing.ViewModels;

namespace Xamarin.PropertyEditing.Mac
{
	internal class PropertyList
		: NSView
	{
		internal const string PropertyEditorColId = "PropertyEditors";

		public PropertyList ()
		{
			this.propertyTable = new FirstResponderOutlineView {
				AccessibilityEnabled = true,
				AccessibilityTitle = Properties.Resources.AccessibilityPropertyTable,
				IndentationPerLevel = 0,
				SelectionHighlightStyle = NSTableViewSelectionHighlightStyle.None,
				HeaderView = null,
				IntercellSpacing = new CGSize (0, 0)
			};

			var propertyEditors = new NSTableColumn (PropertyEditorColId);
			this.propertyTable.AddColumn (propertyEditors);

			this.scrollView = new NSScrollView {
				AutoresizingMask = NSViewResizingMask.WidthSizable | NSViewResizingMask.HeightSizable,
				HasHorizontalScroller = false,
				HasVerticalScroller = true,
			};

			this.scrollView.DocumentView = this.propertyTable;
			AddSubview (this.scrollView);
		}

		public bool ShowHeader
		{
			get { return this.showHeader; }
			set
			{
				if (this.showHeader == value)
					return;

				this.showHeader = value;
				if (this.dataSource != null) {
					this.dataSource.ShowHeader = value;
					this.propertyTable.ReloadData ();
				}
			}
		}

		public PanelViewModel ViewModel
		{
			get { return this.viewModel; }
			set
			{
				if (this.viewModel != null) {
					this.viewModel.ArrangedPropertiesChanged -= OnPropertiesChanged;

					this.propertyTable.Delegate = null;
					this.propertyTable.DataSource = null;
				}

				this.viewModel = value;

				if (this.viewModel != null) {
					this.viewModel.ArrangedPropertiesChanged += OnPropertiesChanged;

					this.dataSource = new PropertyTableDataSource (this.viewModel) { ShowHeader = ShowHeader };
					this.dataDelegate = new PropertyTableDelegate (HostResourceProvider, this.dataSource);

					this.propertyTable.Delegate = this.dataDelegate;
					this.propertyTable.DataSource = this.dataSource;
				}
			}
		}

		public IHostResourceProvider HostResourceProvider
		{
			get => this.hostResources;
			set
			{
				if (this.hostResources == value)
					return;
				if (value == null)
					throw new ArgumentNullException (nameof (value), "Cannot set HostResourceProvider to null");

				this.hostResources = value;
				UpdateResourceProvider ();
			}
		}

		public sealed override void ViewDidChangeEffectiveAppearance ()
		{
			base.ViewDidChangeEffectiveAppearance ();

			UpdateResourceProvider ();
		}

		public void UpdateExpansions ()
		{
			dataDelegate.UpdateExpansions (this.propertyTable);
		}

		private readonly NSOutlineView propertyTable;
		private readonly NSScrollView scrollView;
		private IHostResourceProvider hostResources;
		private PropertyTableDataSource dataSource;
		private PropertyTableDelegate dataDelegate;
		private PanelViewModel viewModel;
		private bool showHeader = true;

		private class FirstResponderOutlineView : NSOutlineView
		{
			private bool tabbedIn;
			public override bool ValidateProposedFirstResponder (NSResponder responder, NSEvent forEvent)
			{
				return true;
			}

			public override CGRect FrameOfOutlineCellAtRow (nint row) => CGRect.Empty;

			public override bool BecomeFirstResponder ()
			{
				var willBecomeFirstResponder = base.BecomeFirstResponder ();
				if (willBecomeFirstResponder) {
					if (SelectedRows.Count == 0 && RowCount > 0) {
						SelectRow (0, false);
						this.tabbedIn = true;
						var row = GetRowView ((nint)SelectedRows.FirstIndex, false);
						if (row != null) {
							return Window.MakeFirstResponder (row.NextValidKeyView);
						}
					}
				}
				this.tabbedIn = false;
				return willBecomeFirstResponder;
			}

			public override bool ResignFirstResponder ()
			{
				var wilResignFirstResponder = base.ResignFirstResponder ();
				if (wilResignFirstResponder) {
					if (SelectedRows.Count > 0 && !this.tabbedIn) {
						DeselectRow ((nint)SelectedRows.FirstIndex);
					}
				}
				return wilResignFirstResponder;
			}
		}

		private void OnPropertiesChanged (object sender, EventArgs e)
		{
			this.propertyTable.ReloadData ();
		}

		private void UpdateResourceProvider ()
		{
			if (this.propertyTable == null || this.hostResources == null)
				return;

			this.propertyTable.BackgroundColor = this.hostResources.GetNamedColor (NamedResources.PadBackgroundColor);

			if (this.propertyTable.Delegate != null)
			{
				this.propertyTable.Delegate = dataDelegate = new PropertyTableDelegate (HostResourceProvider, this.dataSource);
			}
		}
	}
}