summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.Tizen/Renderers/DatePickerRenderer.cs
blob: fefadcc7f7c06708d3b668440e5e170a75a9057a (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
using System;
using ELayout = ElmSharp.Layout;

namespace Xamarin.Forms.Platform.Tizen
{
	public class DatePickerRenderer : ViewRenderer<DatePicker, ELayout>
	{
		//TODO need to add internationalization support
		const string DialogTitle = "Choose Date";
		Native.Entry _realControl = null;

		public DatePickerRenderer()
		{
			RegisterPropertyHandler(DatePicker.DateProperty, UpdateDate);
			RegisterPropertyHandler(DatePicker.FormatProperty, UpdateDate);
			RegisterPropertyHandler(DatePicker.TextColorProperty, UpdateTextColor);
		}

		protected override void OnElementChanged(ElementChangedEventArgs<DatePicker> e)
		{
			if (Control == null)
			{
				var layout = new ELayout(Forms.Context.MainWindow);
				layout.SetTheme("layout", "editfield", "singleline");
				_realControl = new Native.Entry(layout)
				{
					IsSingleLine = true,
					HorizontalTextAlignment = Native.TextAlignment.Center,
				};
				_realControl.AllowFocus(false);
				layout.SetPartContent("elm.swallow.content", _realControl);
				SetNativeControl(layout);
			}

			if (e.OldElement != null)
			{
				_realControl.Clicked -= ClickedHandler;
			}

			if (e.NewElement != null)
			{
				_realControl.Clicked += ClickedHandler;
			}

			base.OnElementChanged(e);
		}

		void ClickedHandler(object sender, EventArgs e)
		{
			Native.DateTimePickerDialog dialog = new Native.DateTimePickerDialog(Forms.Context.MainWindow)
			{
				Title = DialogTitle
			};

			dialog.InitializeDatePicker(Element.Date, Element.MinimumDate, Element.MaximumDate);
			dialog.DateTimeChanged += DialogDateTimeChangedHandler;
			dialog.Dismissed += DialogDismissedHandler;
			dialog.Show();
		}

		void DialogDateTimeChangedHandler(object sender, Native.DateChangedEventArgs dcea)
		{
			Element.Date = dcea.NewDate;
			_realControl.Text = dcea.NewDate.ToString(Element.Format);
		}

		void DialogDismissedHandler(object sender, EventArgs e)
		{
			var dialog = sender as Native.DateTimePickerDialog;
			dialog.DateTimeChanged -= DialogDateTimeChangedHandler;
			dialog.Dismissed -= DialogDismissedHandler;
		}

		void UpdateDate()
		{
			_realControl.Text = Element.Date.ToString(Element.Format);
		}

		void UpdateTextColor()
		{
			_realControl.TextColor = Element.TextColor.ToNative();
		}
	}
}