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

HeaderView.cs « BindingEditor « Controls « Xamarin.PropertyEditing.Mac - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e9a5c67ddf1213ac81d447e3e323b10f6d2a68b (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
using System;
using AppKit;
using CoreAnimation;
using CoreGraphics;
using ObjCRuntime;

namespace Xamarin.PropertyEditing.Mac
{
	internal class HeaderView : NSView
	{
		public string Title {
			get { return this.headerText.StringValue; }
			set { this.headerText.StringValue = value; }
		}

		private NSLayoutConstraint horizonalHeaderTextAlignment;
		public nfloat HorizonalTitleOffset {
			get { return this.horizonalHeaderTextAlignment.Constant; }
			set { this.horizonalHeaderTextAlignment.Constant = value; }
		}

        private UnfocusableTextField headerText = new UnfocusableTextField {
			TranslatesAutoresizingMaskIntoConstraints = false,
		};

		internal HeaderView ()
		{
			TranslatesAutoresizingMaskIntoConstraints = false;
			WantsLayer = true;

			// Layer out of alphabetical order so that WantsLayer creates the layer first
			Layer = new CALayer {
				CornerRadius = 1.0f,
				BorderColor = new CGColor (.5f, .5f, .5f, 1.0f),
				BorderWidth = 1,
			};

			this.horizonalHeaderTextAlignment = NSLayoutConstraint.Create (this.headerText, NSLayoutAttribute.CenterX, NSLayoutRelation.Equal, this, NSLayoutAttribute.CenterX, 1, 0);

			AddSubview (this.headerText);
			AddConstraints (new[] {
				NSLayoutConstraint.Create (this.headerText, NSLayoutAttribute.Height, NSLayoutRelation.Equal, this, NSLayoutAttribute.Height, 1f, 0f),
				this.horizonalHeaderTextAlignment,
				NSLayoutConstraint.Create (this.headerText, NSLayoutAttribute.CenterY, NSLayoutRelation.Equal, this, NSLayoutAttribute.CenterY, 1, 0f),
			});
		}
	}
}