Implemented RegisterHiddenField
[mono.git] / mcs / class / System.Web.Extensions / System.Web.UI / Timer.cs
1 //
2 // Timer.cs
3 //
4 // Author:
5 //   Igor Zelmanovich <igorz@mainsoft.com>
6 //
7 // (C) 2007 Mainsoft, Inc.  http://www.mainsoft.com
8 //
9 //
10 // Permission is hereby granted, free of charge, to any person obtaining
11 // a copy of this software and associated documentation files (the
12 // "Software"), to deal in the Software without restriction, including
13 // without limitation the rights to use, copy, modify, merge, publish,
14 // distribute, sublicense, and/or sell copies of the Software, and to
15 // permit persons to whom the Software is furnished to do so, subject to
16 // the following conditions:
17 // 
18 // The above copyright notice and this permission notice shall be
19 // included in all copies or substantial portions of the Software.
20 // 
21 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28 //
29
30 using System;
31 using System.Collections.Generic;
32 using System.Text;
33 using System.ComponentModel;
34
35 namespace System.Web.UI
36 {
37         [DefaultProperty ("Interval")]
38         [Designer ("System.Web.UI.Design.TimerDesigner, System.Web.Extensions.Design, Version=1.0.61025.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
39         [NonVisualControl]
40         [SupportsEventValidation]
41         [DefaultEvent ("Tick")]
42         public class Timer : Control, IPostBackEventHandler, IScriptControl
43         {
44                 [Category ("Behavior")]
45                 [DefaultValue (true)]
46                 public bool Enabled {
47                         get {
48                                 throw new NotImplementedException ();
49                         }
50                         set {
51                                 throw new NotImplementedException ();
52                         }
53                 }
54
55                 [DefaultValue (60000)]
56                 [Category ("Behavior")]
57                 public int Interval {
58                         get {
59                                 throw new NotImplementedException ();
60                         }
61                         set {
62                                 throw new NotImplementedException ();
63                         }
64                 }
65
66                 [DesignerSerializationVisibility (DesignerSerializationVisibility.Hidden)]
67                 [Browsable (false)]
68                 [EditorBrowsable (EditorBrowsableState.Never)]
69                 public override bool Visible {
70                         get {
71                                 throw new NotImplementedException ();
72                         }
73                         set {
74                                 throw new NotImplementedException ();
75                         }
76                 }
77
78                 [Category ("Action")]
79                 public event EventHandler<EventArgs> Tick;
80
81                 protected virtual IEnumerable<ScriptDescriptor> GetScriptDescriptors () {
82                         throw new NotImplementedException ();
83                 }
84
85                 protected virtual IEnumerable<ScriptReference> GetScriptReferences () {
86                         throw new NotImplementedException ();
87                 }
88
89                 protected override void OnPreRender (EventArgs e) {
90                         base.OnPreRender (e);
91                 }
92
93                 protected virtual void OnTick (EventArgs e) {
94                         if (Tick != null)
95                                 Tick (this, e);
96                 }
97
98                 protected virtual void RaisePostBackEvent (string eventArgument) {
99                         throw new NotImplementedException ();
100                 }
101
102                 protected override void Render (HtmlTextWriter writer) {
103                 }
104
105                 #region IPostBackEventHandler Members
106
107                 void IPostBackEventHandler.RaisePostBackEvent (string eventArgument) {
108                         RaisePostBackEvent (eventArgument);
109                 }
110
111                 #endregion
112
113                 #region IScriptControl Members
114
115                 IEnumerable<ScriptDescriptor> IScriptControl.GetScriptDescriptors () {
116                         return GetScriptDescriptors ();
117                 }
118
119                 IEnumerable<ScriptReference> IScriptControl.GetScriptReferences () {
120                         return GetScriptReferences ();
121                 }
122
123                 #endregion
124         }
125 }
126