**** Merged from MCS ****
[mono-project.git] / mcs / class / System.Web.Mobile / System.Web.UI.MobileControls / Calendar.cs
blob4f2a271a6863a1ca0081cd26be3fdb25a1fe54ea
2 //
3 // Permission is hereby granted, free of charge, to any person obtaining
4 // a copy of this software and associated documentation files (the
5 // "Software"), to deal in the Software without restriction, including
6 // without limitation the rights to use, copy, modify, merge, publish,
7 // distribute, sublicense, and/or sell copies of the Software, and to
8 // permit persons to whom the Software is furnished to do so, subject to
9 // the following conditions:
10 //
11 // The above copyright notice and this permission notice shall be
12 // included in all copies or substantial portions of the Software.
13 //
14 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22 /**
23 * Project : Mono
24 * Namespace : System.Web.UI.MobileControls
25 * Class : Calendar
26 * Author : Gaurav Vaish
28 * Copyright : 2003 with Gaurav Vaish, and with
29 * Ximian Inc
32 using System.Web.UI;
33 using System.Web.Mobile;
34 using System.Web.UI.WebControls;
36 namespace System.Web.UI.MobileControls
38 public class Calendar : MobileControl, IPostBackEventHandler
40 private System.Web.UI.WebControls.Calendar webCal;
41 private static readonly object SelectionChangedEvent = new object();
43 public Calendar()
45 webCal = CreateWebCalendar();
46 webCal.Visible = false;
47 webCal.Controls.Add(webCal);
48 webCal.SelectionChanged += new EventHandler(WebSelectionChanged);
51 protected virtual System.Web.UI.WebControls.Calendar CreateWebCalendar()
53 return new System.Web.UI.WebControls.Calendar();
56 void IPostBackEventHandler.RaisePostBackEvent(string eventArgument)
58 if(MobilePage.ActiveForm != Form)
59 MobilePage.ActiveForm = Form;
60 Adapter.HandlePostBackEvent(eventArgument);
63 public event EventHandler SelectionChanged
65 add
67 Events.AddHandler(SelectionChangedEvent, value);
69 remove
71 Events.RemoveHandler(SelectionChangedEvent, value);
75 public string CalendarEntryText
77 get
79 object o = ViewState["CalendarEntryText"];
80 if(o != null)
81 return (string)o;
82 return String.Empty;
84 set
86 ViewState["CalendarEntryText"] = value;
90 public FirstDayOfWeek FirstDayOfWeek
92 get
94 return webCal.FirstDayOfWeek;
96 set
98 webCal.FirstDayOfWeek = value;
102 public DateTime SelectedDate
106 return webCal.SelectedDate;
110 webCal.SelectedDate = value;
114 public SelectedDatesCollection SelectedDates
118 return webCal.SelectedDates;
122 public CalendarSelectionMode SelectionMode
126 return webCal.SelectionMode;
130 webCal.SelectionMode = value;
134 public bool ShowDayHeader
138 return webCal.ShowDayHeader;
142 webCal.ShowDayHeader = value;
146 public DateTime VisibleDate
150 return webCal.VisibleDate;
154 webCal.VisibleDate = value;
158 public System.Web.UI.WebControls.Calendar WebCalendar
162 return webCal;
166 private void WebSelectionChanged(object sender, EventArgs e)
168 OnSelectionChanged();
171 protected virtual void OnSelectionChanged()
173 EventHandler eh = (EventHandler)(Events[SelectionChangedEvent]);
174 if(eh != null)
176 eh(this, new EventArgs());
180 public void RaiseSelectionChangedEvent()
182 WebSelectionChanged(this, new EventArgs());