Make a copy of the old ZipLib
[mono.git] / mcs / class / Managed.Windows.Forms / System.Windows.Forms / GridItemCollection.cs
1 // Permission is hereby granted, free of charge, to any person obtaining
2 // a copy of this software and associated documentation files (the
3 // "Software"), to deal in the Software without restriction, including
4 // without limitation the rights to use, copy, modify, merge, publish,
5 // distribute, sublicense, and/or sell copies of the Software, and to
6 // permit persons to whom the Software is furnished to do so, subject to
7 // the following conditions:
8 //
9 // The above copyright notice and this permission notice shall be
10 // included in all copies or substantial portions of the Software.
11 //
12 // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
13 // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
14 // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
15 // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
16 // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
17 // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
18 // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
19 //
20 // Copyright (c) 2004-2005 Novell, Inc.
21 //
22 // Authors:
23 //      Jonathan Chambers (jonathan.chambers@ansys.com)
24 //
25
26 // COMPLETE
27
28 using System;
29 using System.Collections;
30
31 namespace System.Windows.Forms
32 {
33         public class GridItemCollection : IEnumerable, ICollection
34         {
35                 #region Local Variables
36                 private System.Collections.SortedList list;
37                 #endregion      // Local Variables
38
39                 #region Public Static Fields
40                 public static GridItemCollection Empty = new GridItemCollection();
41                 #endregion      // Public Static Fields
42
43                 #region Constructors
44                 internal GridItemCollection()
45                 {
46                         list = new SortedList();
47                 }
48                 #endregion      // Constructors
49
50                 #region Internal Properties and Methods
51                 internal void Add(string key, GridItem grid_item)
52                 {
53                         list.Add(key,grid_item);
54                 }
55                 #endregion      // Internal Properties and Methods
56
57                 #region Public Instance Properties
58                 public int Count
59                 {
60                         get {
61                                 return list.Count;
62                         }
63                 }
64
65                 public GridItem this [int index] 
66                 {
67                         get {
68                                 if (index>=list.Count) {
69                                         throw new ArgumentOutOfRangeException("index");
70                                 }
71                                 return (GridItem)list.GetByIndex(index);
72                         }
73                 }
74
75                 public GridItem this [string key] 
76                 {
77                         get {
78                                 return (GridItem)list[key];
79                         }
80                 }
81                 #endregion      // Public Instance Properties
82
83                 #region IEnumerable Members
84                 public IEnumerator GetEnumerator()
85                 {
86                         return new GridItemEnumerator(this);
87                 }
88                 #endregion
89
90                 #region Enumerator Class
91                 internal class GridItemEnumerator : IEnumerator{
92                         int nIndex;
93                         GridItemCollection collection;
94                         public GridItemEnumerator(GridItemCollection coll) {
95                                 collection = coll;
96                                 nIndex = -1;
97                         }
98
99                         public bool MoveNext() {
100                                 nIndex++;
101                                 return(nIndex < collection.Count);
102                         }
103
104                         public void Reset() {
105                                 nIndex = -1;
106                         }
107
108                         object System.Collections.IEnumerator.Current {
109                                 get {
110                                         return(collection[nIndex]);
111                                 }
112                         }
113                 }
114                 #endregion
115
116                 #region ICollection Members
117
118                 bool ICollection.IsSynchronized
119                 {
120                         get
121                         {
122                                 return list.IsSynchronized;
123                         }
124                 }
125
126                 void ICollection.CopyTo(Array array, int index)
127                 {
128                         list.CopyTo(array, index);
129                 }
130
131                 object ICollection.SyncRoot
132                 {
133                         get
134                         {
135                                 return list.SyncRoot;
136                         }
137                 }
138
139                 #endregion
140         }
141 }