2005-09-14 Chris Toshok <toshok@ximian.com>
[mono.git] / mcs / class / Microsoft.Web.Atlas / Microsoft.Web / ScriptComponentBase.cs
1 //
2 // Microsoft.Web.ScriptComponentBase
3 //
4 // Author:
5 //   Chris Toshok (toshok@ximian.com)
6 //
7 //
8 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
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 #if NET_2_0
31
32 using System;
33
34 namespace Microsoft.Web
35 {
36
37         public abstract class ScriptComponentBase: IScriptComponent, IScriptObject
38         {
39                 protected ScriptComponentBase ()
40                 {
41                 }
42
43                 public BindingCollection Bindings {
44                         get {
45                                 throw new NotImplementedException ();
46                         }
47                 }
48
49                 string id = "";
50                 public string ID {
51                         get {
52                                 return id;
53                         }
54                         set {
55                                 id = (value == null ? "" : value);
56                         }
57                 }
58
59                 protected IScriptObject Owner {
60                         get {
61                                 throw new NotImplementedException ();
62                         }
63                 }
64
65                 public ScriptEvent PropertyChanged {
66                         get {
67                                 throw new NotImplementedException ();
68                         }
69                 }
70
71                 protected ScriptEventCollection ScriptEvents {
72                         get {
73                                 throw new NotImplementedException ();
74                         }
75                 }
76
77                 public abstract string TagName { get; }
78
79                 protected virtual void AddAttributesToElement (ScriptTextWriter writer)
80                 {
81                         if (ID != "")
82                                 writer.WriteAttributeString ("id", id);
83                 }
84
85                 public ScriptTypeDescriptor GetTypeDescriptor ()
86                 {
87                         throw new NotImplementedException ();
88                 }
89
90                 protected virtual void InitializeTypeDescriptor (ScriptTypeDescriptor typeDescriptor)
91                 {
92                         typeDescriptor.AddEvent (new ScriptEventDescriptor ("propertyChanged", true));
93                         typeDescriptor.AddProperty (new ScriptPropertyDescriptor ("bindings", ScriptType.Array, true, "Bindings"));
94                         typeDescriptor.AddProperty (new ScriptPropertyDescriptor ("dataContext", ScriptType.Object));
95                         typeDescriptor.AddProperty (new ScriptPropertyDescriptor ("id", ScriptType.String, "ID"));
96                         typeDescriptor.AddProperty (new ScriptPropertyDescriptor ("eventArgs", ScriptType.Object));
97                         typeDescriptor.AddProperty (new ScriptPropertyDescriptor ("result", ScriptType.Object));
98                         typeDescriptor.AddProperty (new ScriptPropertyDescriptor ("sender", ScriptType.Object));
99                 }
100
101                 public void RenderScript (ScriptTextWriter writer)
102                 {
103                         RenderScriptBeginTag (writer);
104                         AddAttributesToElement (writer);
105                         RenderScriptTagContents (writer);
106                         RenderScriptEndTag (writer);
107                 }
108
109                 protected virtual void RenderScriptBeginTag (ScriptTextWriter writer)
110                 {
111                         writer.WriteStartElement (TagName);
112                 }
113
114                 protected virtual void RenderScriptEndTag (ScriptTextWriter writer)
115                 {
116                         writer.WriteEndElement ();
117                 }
118
119                 protected virtual void RenderScriptTagContents (ScriptTextWriter writer)
120                 {
121                 }
122
123                 public void SetOwner (IScriptObject owner)
124                 {
125                         throw new NotImplementedException ();
126                 }
127
128                 IScriptObject IScriptObject.Owner {
129                         get {
130                                 throw new NotImplementedException ();
131                         }
132                 }
133         }
134 }
135
136 #endif