2010-04-06 Jb Evain <jbevain@novell.com>
[mcs.git] / class / System.Design / System.Web.UI.Design / HtmlControlDesigner.cs
blobfed029d67ada74d5b636b83a20193993dbbdd24e
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 using System;
23 using System.Collections;
24 using System.ComponentModel;
25 using System.ComponentModel.Design;
26 using System.Web.UI;
27 using System.Web.UI.WebControls;
29 namespace System.Web.UI.Design
31 [MonoTODO]
32 public class HtmlControlDesigner : ComponentDesigner
34 [MonoTODO]
35 public HtmlControlDesigner () { throw new NotImplementedException (); }
37 [MonoTODO]
38 protected override void Dispose (bool disposing) { throw new NotImplementedException (); }
40 [MonoTODO]
41 #if NET_2_0
42 [Obsolete ("Use ControlDesigner.Tag instead")]
43 #endif
44 protected virtual void OnBehaviorAttached () { throw new NotImplementedException (); }
46 [MonoTODO]
47 #if NET_2_0
48 [Obsolete ("Use ControlDesigner.Tag instead")]
49 #endif
50 protected virtual void OnBehaviorDetaching () { throw new NotImplementedException (); }
52 [MonoTODO]
53 #if NET_2_0
54 [Obsolete ("Use DataBinding.Changed event instead")]
55 #endif
56 protected virtual void OnBindingsCollectionChanged (string propName) { throw new NotImplementedException (); }
58 [MonoTODO]
59 public virtual void OnSetParent () { throw new NotImplementedException (); }
61 [MonoTODO]
62 protected override void PreFilterEvents (IDictionary events) { throw new NotImplementedException (); }
64 [MonoTODO]
65 protected override void PreFilterProperties (IDictionary properties) { throw new NotImplementedException (); }
67 [MonoTODO]
68 #if NET_2_0
69 [Obsolete ("Use ControlDesigner.Tag instead")]
70 #endif
71 public IHtmlControlDesignerBehavior Behavior { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
73 [MonoTODO]
74 public DataBindingCollection DataBindings { get { throw new NotImplementedException (); } }
76 [MonoTODO]
77 #if NET_2_0
78 [Obsolete ("Use new WebFormsRootDesigner feature instead. It is not used anymore", true)]
79 #endif
80 protected object DesignTimeElement { get { throw new NotImplementedException (); } }
82 [MonoTODO]
83 #if NET_2_0
84 [Obsolete ("Code serialization is not supported in 2.0 anymore")]
85 #endif
86 public virtual bool ShouldCodeSerialize { get { throw new NotImplementedException (); } set { throw new NotImplementedException (); } }
88 #if NET_2_0
89 public ExpressionBindingCollection Expressions {
90 get { throw new NotImplementedException (); }
93 public override void Initialize (IComponent component)
95 throw new NotImplementedException ();
97 #endif