2008-02-25 Ivan N. Zlatev <contact@i-nz.net>
[mono.git] / mcs / class / System.Design / System.ComponentModel.Design / DateTimeEditor.cs
1 //
2 // System.ComponentModel.Design.DateTimeEditor
3 //
4 // Authors:
5 //   Andreas Nahr (ClassDevelopment@A-SoftTech.com)
6 //   Gert Driesen (drieseng@users.sourceforge.net)
7 //
8 // (C) 2004 Novell
9 // (C) 2007 Andreas Nahr
10 //
11
12 //
13 // Permission is hereby granted, free of charge, to any person obtaining
14 // a copy of this software and associated documentation files (the
15 // "Software"), to deal in the Software without restriction, including
16 // without limitation the rights to use, copy, modify, merge, publish,
17 // distribute, sublicense, and/or sell copies of the Software, and to
18 // permit persons to whom the Software is furnished to do so, subject to
19 // the following conditions:
20 // 
21 // The above copyright notice and this permission notice shall be
22 // included in all copies or substantial portions of the Software.
23 // 
24 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
25 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
26 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
27 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
28 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
29 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
30 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
31 //
32
33
34 using System;
35 using System.ComponentModel;
36 using System.Drawing.Design;
37 using System.Windows.Forms;
38 using System.Windows.Forms.Design;
39
40 namespace System.ComponentModel.Design
41 {
42         public class DateTimeEditor : UITypeEditor
43         {
44                 private class EditorControl : MonthCalendar
45                 {
46                         public EditorControl ()
47                         {
48                                 MaxSelectionCount = 1;
49                         }
50                 }
51
52                 private IWindowsFormsEditorService editorService;
53                 private EditorControl control = new EditorControl ();
54                 private DateTime editContent;
55
56                 public DateTimeEditor ()
57                 {
58                         control.DateSelected += new DateRangeEventHandler (control_DateSelected);
59                 }
60
61                 public override object EditValue (ITypeDescriptorContext context, IServiceProvider provider, object value)
62                 {
63                         if (context != null && provider != null)
64                         {
65                                 editorService = (IWindowsFormsEditorService)provider.GetService (typeof (IWindowsFormsEditorService));
66                                 if (editorService != null)
67                                 {
68                                         if (!(value is DateTime))
69                                                 return value;
70
71                                         editContent = (DateTime)value;
72                                         if (editContent > control.MaxDate || editContent < control.MinDate)
73                                                 control.SelectionStart = DateTime.Today;
74                                         else
75                                                 control.SelectionStart = editContent;
76
77                                         editorService.DropDownControl (control);
78
79                                         return editContent;
80                                 }
81                         }
82                         return base.EditValue (context, provider, value);
83                 }
84
85                 void control_DateSelected (object sender, DateRangeEventArgs e)
86                 {
87                         editContent = e.Start;
88                         editorService.CloseDropDown ();
89                 }
90
91                 public override UITypeEditorEditStyle GetEditStyle (ITypeDescriptorContext context)
92                 {
93                         return UITypeEditorEditStyle.DropDown;
94                 }
95         }
96 }