New test.
[mono.git] / mcs / class / System.Web / System.Web.UI.WebControls / HotSpotCollection.cs
1 //
2 // System.Web.UI.WebControls.HotSpotCollection.cs
3 //
4 // Authors:
5 //      Lluis Sanchez Gual (lluis@novell.com)
6 //
7 // (C) 2005 Novell, Inc (http://www.novell.com)
8 //
9
10 //
11 // Permission is hereby granted, free of charge, to any person obtaining
12 // a copy of this software and associated documentation files (the
13 // "Software"), to deal in the Software without restriction, including
14 // without limitation the rights to use, copy, modify, merge, publish,
15 // distribute, sublicense, and/or sell copies of the Software, and to
16 // permit persons to whom the Software is furnished to do so, subject to
17 // the following conditions:
18 // 
19 // The above copyright notice and this permission notice shall be
20 // included in all copies or substantial portions of the Software.
21 // 
22 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
23 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
24 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
25 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
26 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
27 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
28 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
29 //
30
31 #if NET_2_0
32
33 using System.Collections;
34 using System.ComponentModel;
35 using System.Reflection;
36 using System.Security.Permissions;
37
38 namespace System.Web.UI.WebControls
39 {
40         [EditorAttribute ("System.Web.UI.Design.WebControls.HotSpotCollectionEditor, " + Consts.AssemblySystem_Design, "System.Drawing.Design.UITypeEditor, " + Consts.AssemblySystem_Drawing)]\r
41         [AspNetHostingPermissionAttribute (SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)]\r
42         public sealed class HotSpotCollection: StateManagedCollection
43         {
44                 private static Type[] _knownTypes = new Type[] { 
45                         typeof (CircleHotSpot),
46                         typeof (PolygonHotSpot),
47                         typeof (RectangleHotSpot)
48                 };
49                                                     
50                 public HotSpot this [int idx] {
51                         get { return (HotSpot) ((IList)this)[idx]; }
52                 }
53
54                 public int Add (HotSpot spot)
55                 {
56                         return ((IList)this).Add (spot);
57                 }
58                 
59                 protected override object CreateKnownType (int idx)
60                 {
61                         switch (idx) {
62                         case 0:
63                                 return new CircleHotSpot ();
64                         case 1:
65                                 return new PolygonHotSpot ();                   
66                         case 2:
67                                 return new RectangleHotSpot ();                 
68                         }
69
70                         throw new ArgumentOutOfRangeException ("index");
71                 }
72                 
73                 protected override Type[] GetKnownTypes ()
74                 {
75                         return _knownTypes;
76                 }
77                 
78                 public void Insert (int idx, HotSpot spot)
79                 {
80                         ((IList)this).Insert (idx, spot);
81                 }
82                 
83                 protected override void OnValidate (object o)
84                 {
85                         base.OnValidate (o);
86                         
87                         if ((o is HotSpot) == false)
88                                 throw new ArgumentException ("o is not a HotSpot");
89                 }
90
91                 public void Remove (HotSpot spot)
92                 {
93                         ((IList)this).Remove (spot);
94                 }
95
96                 public void RemoveAt (int idx)
97                 {
98                         ((IList)this).RemoveAt (idx);
99                 }
100
101                 protected override void SetDirtyObject (object o)
102                 {\r
103                         HotSpot spot = (HotSpot)o;\r
104                         spot.SetDirty ();\r
105                 }
106         }
107 }
108
109 #endif