2008-03-13 Marek Habersack <mhabersack@novell.com>
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls.WebParts / Part.cs
1 //
2 // System.Web.UI.WebControls.WebParts.Part
3 //
4 // Authors: Chris Toshok <toshok@novell.com>
5 //
6 // Copyright (C) 2005 Novell, Inc (http://www.novell.com)
7 //
8 // Permission is hereby granted, free of charge, to any person obtaining
9 // a copy of this software and associated documentation files (the
10 // "Software"), to deal in the Software without restriction, including
11 // without limitation the rights to use, copy, modify, merge, publish,
12 // distribute, sublicense, and/or sell copies of the Software, and to
13 // permit persons to whom the Software is furnished to do so, subject to
14 // the following conditions:
15 // 
16 // The above copyright notice and this permission notice shall be
17 // included in all copies or substantial portions of the Software.
18 // 
19 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
26 //
27
28 #if NET_2_0
29 using System;
30
31 namespace System.Web.UI.WebControls.WebParts
32 {
33
34         public abstract class Part: Panel, INamingContainer, ICompositeControlDesignerAccessor
35         {
36                 string description;
37                 string title;
38                 PartChromeState chrome_state;
39                 PartChromeType chrome_type;
40                 ControlCollection controls;
41
42                 internal Part ()
43                 {
44                         description = "";
45                         title = "";
46                         chrome_state = PartChromeState.Normal;
47                         chrome_type = PartChromeType.Default;
48                 }
49
50                 [MonoTODO ("Not implemented")]
51                 public override void DataBind()
52                 {
53                         throw new NotImplementedException ();
54                 }
55
56                 [MonoTODO("not sure exactly what this one does..")]
57                 void ICompositeControlDesignerAccessor.RecreateChildControls ()
58                 {
59                         /* for now just call CreateChildControls to force
60                          * the recreation of our children. */
61                         CreateChildControls ();
62                 }
63
64                 public virtual PartChromeState ChromeState
65                 {
66                         get {
67                                 return chrome_state;
68                         }
69                         set {
70                                 chrome_state = value;
71                         }
72                 }
73
74                 public virtual PartChromeType ChromeType
75                 {
76                         get {
77                                 return chrome_type;
78                         }
79                         set {
80                                 chrome_type = value;
81                         }
82                 }
83
84                 public virtual new ControlCollection Controls
85                 {
86                         get {
87                                 if(controls == null)
88                                         controls = new ControlCollection(this);
89                                 return controls;
90                         }
91                 }
92
93                 public virtual string Description
94                 {
95                         get {
96                                 return description;
97                         }
98                         set {
99                                 description = value;
100                         }
101                 }
102
103                 public virtual string Title
104                 {
105                         get {
106                                 return title;
107                         }
108                         set {
109                                 title = value;
110                         }
111                 }
112         }
113 }
114 #endif