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

CHtmlCalendarAdapter.cs « System.Web.UI.MobileControls.Adapters « System.Web.Mobile « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 03738b6da4a6b2fef94460b12608cc957284a021 (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

//
// 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.
//
/**
 * Project   : Mono
 * Namespace : System.Web.UI.MobileControls.Adapters
 * Class     : CHtmlCalendarAdapter
 * Author    : Gaurav Vaish
 *
 * Copyright : 2003 with Gaurav Vaish, and with
 *             Ximian Inc
 */

using System;
using System.IO;
using System.Web.UI;
using System.Web.Mobile;
using System.Web.UI.MobileControls;

namespace System.Web.UI.MobileControls.Adapters
{
	public class CHtmlCalendarAdapter : HtmlControlAdapter
	{
		private const int optionPrompt = 0x00;
		private const int typeDate     = 0x01;
		private const int dateOption   = 0x02;
		private const int weekOption   = 0x03;
		private const int mthOption    = 0x04;
		private const int chooseMonth  = 0x05;
		private const int chooseWeek   = 0x06;
		private const int chooseDay    = 0x07;
		private const int defDateDone  = 0x08;
		private const int typeDateDone = 0x09;
		private const int done         = 0x0A;
		private const int firstPrompt  = 0xFFFFFFF;

		private static int[] options;
		private static char[] fmtChars;

		private const string daySeparator = " - ";
		private const string space        = " ";

		private int chooseOption;
		private int eraCount;
		private int monthsDisplayCount;
		private bool   reqFormTag;
		private string textBoxErrMsg;

		private Command command;
		private List dayList;
		private List monthList;
		private List optionList;
		private List weekList;
		private SelectionList selectList;
		private TextBox textBox;
		private System.Globalization.Calendar threadCal;

		public CHtmlCalendarAdapter()
		{
		}

		protected new Calendar Control
		{
			get
			{
				return base.Control as Calendar;
			}
		}

		public override bool RequiresFormTag
		{
			get
			{
				return this.reqFormTag;
			}
		}

		[MonoTODO]
		public override bool HandlePostBackEvent(string eventArg)
		{
			throw new NotImplementedException();
		}

		[MonoTODO]
		public override void LoadAdapterState(object state)
		{
			throw new NotImplementedException();
		}

		public override object SaveAdapterState()
		{
			throw new NotImplementedException();
		}

		public override void OnInit(EventArgs e)
		{
			throw new NotImplementedException();
		}

		public override void OnLoad(EventArgs e)
		{
			throw new NotImplementedException();
		}

		public override void OnPreRender(EventArgs e)
		{
			throw new NotImplementedException();
		}

		public override void Render(HtmlMobileTextWriter writer)
		{
			throw new NotImplementedException();
		}
	}
}