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

AlertDialogBackend.cs « Xwt.Mac « Xwt.XamMac - github.com/mono/xwt.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: acf66e21402810f44d89b75a5fb21332e96c34cf (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
// 
// AlertDialogBackend.cs
//  
// Author:
//       Thomas Ziegler <ziegler.thomas@web.de>
// 
// Copyright (c) 2012 Thomas Ziegler
// 
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
// 
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
// 
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.

using System;
using AppKit;
using CoreGraphics;
using ObjCRuntime;
using Xwt.Backends;

namespace Xwt.Mac
{
	public class AlertDialogBackend : NSAlert, IAlertDialogBackend
	{
		ApplicationContext Context;

		public AlertDialogBackend ()
		{
		}
		
		public AlertDialogBackend (NativeHandle intptr)
		{
		}

		public virtual void Initialize (ApplicationContext actx)
		{
			Context = actx;
		}

		#region IAlertDialogBackend implementation
		public Command Run (WindowFrame transientFor, MessageDescription message)
		{
			this.MessageText = message.Text ?? String.Empty;
			this.InformativeText = message.SecondaryText ?? String.Empty;

			if (message.Icon != null)
				Icon = message.Icon.ToImageDescription (Context).ToNSImage ();

			var sortedButtons = new Command [message.Buttons.Count];
			var j = 0;
			if (message.DefaultButton >= 0) {
				sortedButtons [0] = message.Buttons [message.DefaultButton];
				this.AddButton (message.Buttons [message.DefaultButton].Label);
				j = 1;
			}
			for (var i = 0; i < message.Buttons.Count; i++) {
				if (i == message.DefaultButton)
					continue;
				sortedButtons [j++] = message.Buttons [i];
				this.AddButton (message.Buttons [i].Label);
			}
			for (var i = 0; i < sortedButtons.Length; i++) {
				if (sortedButtons [i].Icon != null) {
					Buttons [i].Image = sortedButtons [i].Icon.WithSize (IconSize.Small).ToImageDescription (Context).ToNSImage ();
					Buttons [i].ImagePosition = NSCellImagePosition.ImageLeft;
				}
			}

			if (message.AllowApplyToAll) {
				ShowsSuppressionButton = true;
				SuppressionButton.State = NSCellStateValue.Off;
				SuppressionButton.Activated += (sender, e) => ApplyToAll = SuppressionButton.State == NSCellStateValue.On;
			}

			if (message.Options.Count > 0) {
				AccessoryView = new NSView ();
				var optionsSize = new CGSize (0, 3);

				foreach (var op in message.Options) {
					var chk = new NSButton ();
					chk.SetButtonType (NSButtonType.Switch);
					chk.Title = op.Text;
					chk.State = op.Value ? NSCellStateValue.On : NSCellStateValue.Off;
					chk.Activated += (sender, e) => message.SetOptionValue (op.Id, chk.State == NSCellStateValue.On);

					chk.SizeToFit ();
					chk.Frame = new CGRect (new CGPoint (0, optionsSize.Height), chk.FittingSize);

					optionsSize.Height += chk.FittingSize.Height + 6;
					optionsSize.Width = (float) Math.Max (optionsSize.Width, chk.FittingSize.Width);

					AccessoryView.AddSubview (chk);
					chk.NeedsDisplay = true;
				}

				AccessoryView.SetFrameSize (optionsSize);
			}

			var win = Context.Toolkit.GetNativeWindow (transientFor) as NSWindow;
			Window.ReleasedWhenClosed = true;
			if (win != null)
				return sortedButtons [(int)this.RunSheetModal (win) - 1000];
			return sortedButtons [(int)this.RunModal () - 1000];
		}

		public bool ApplyToAll { get; set; }
		#endregion

		public override bool ConformsToProtocol (NativeHandle protocol)
		{
			// HACK: for some reason on systems with a TouchBar this might be called
			//       after the window has been closed and released, resulting in
			//       an ObjectDisposedException followed by a crash
			if (isDisposed)
				return false;

			return base.ConformsToProtocol (protocol);
		}

		bool isDisposed;
		protected override void Dispose (bool disposing)
		{
			isDisposed = true;
			base.Dispose (disposing);
		}
	}
}