New test.
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / TemplateColumn.cs
1 //
2 // System.Web.UI.WebControls.TemplateColumn
3 //
4 // Authors:
5 //      Ben Maurer (bmaurer@novell.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9 // Permission is hereby granted, free of charge, to any person obtaining
10 // a copy of this software and associated documentation files (the
11 // "Software"), to deal in the Software without restriction, including
12 // without limitation the rights to use, copy, modify, merge, publish,
13 // distribute, sublicense, and/or sell copies of the Software, and to
14 // permit persons to whom the Software is furnished to do so, subject to
15 // the following conditions:
16 // 
17 // The above copyright notice and this permission notice shall be
18 // included in all copies or substantial portions of the Software.
19 // 
20 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
21 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
23 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
24 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
25 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
26 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 //
28
29 using System.ComponentModel;
30 using System.Web.UI;
31
32 namespace System.Web.UI.WebControls {
33         public class TemplateColumn : DataGridColumn {
34                 public override void InitializeCell (TableCell cell, int columnIndex, ListItemType itemType)
35                 {
36                         base.InitializeCell (cell, columnIndex, itemType);
37                         ITemplate t = null;
38                         switch (itemType) {
39                         case ListItemType.Header:
40                                 t = HeaderTemplate;
41                                 break;
42                         case ListItemType.Footer:
43                                 t = FooterTemplate;
44                                 break;
45                         case ListItemType.Item:
46                         case ListItemType.AlternatingItem:
47                         case ListItemType.SelectedItem:
48                                 t = ItemTemplate;
49                                 break;
50                         case ListItemType.EditItem:
51                                 t = EditItemTemplate;
52                                 if (t == null)
53                                         t = ItemTemplate;
54                                 break;
55                         }
56                         
57                         if (t != null)
58                                 t.InstantiateIn (cell);
59                 }
60
61                 ITemplate editItemTemplate, footerTemplate, headerTemplate, itemTemplate;
62                 
63                 [Browsable(false)]
64                 [DefaultValue (null)]
65                 [PersistenceMode(PersistenceMode.InnerProperty)]
66                 [TemplateContainer (typeof(DataGridItem))]
67                 [WebSysDescription ("")]
68                 public virtual ITemplate EditItemTemplate {
69                         get { return editItemTemplate; }
70                         set { editItemTemplate = value; }
71                 }
72                 
73                 [Browsable(false)]
74                 [DefaultValue (null)]
75                 [PersistenceMode(PersistenceMode.InnerProperty)]
76                 [TemplateContainer (typeof(DataGridItem))]
77                 [WebSysDescription ("")]
78                 public virtual ITemplate FooterTemplate {
79                         get { return footerTemplate; }
80                         set { footerTemplate = value; } 
81                 }
82                 
83                 [Browsable(false)]
84                 [DefaultValue (null)]
85                 [PersistenceMode(PersistenceMode.InnerProperty)]
86                 [TemplateContainer (typeof(DataGridItem))]
87                 [WebSysDescription ("")]
88                 public virtual ITemplate HeaderTemplate {
89                         get { return headerTemplate; }
90                         set { headerTemplate = value; }
91                 }
92                 
93                 [Browsable(false)]
94                 [DefaultValue (null)]
95                 [PersistenceMode(PersistenceMode.InnerProperty)]
96                 [TemplateContainer (typeof(DataGridItem))]
97                 [WebSysDescription ("")]
98                 public virtual ITemplate ItemTemplate {
99                         get { return itemTemplate; }
100                         set { itemTemplate = value; }
101                 }
102         }
103 }