[winforms] Style
[mono.git] / mcs / class / Mono.WebBrowser / Mono.Mozilla / DOM / AttributeCollection.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) 2008 Novell, Inc.
21 //
22 // Authors:
23 //      Andreia Gaita (avidigal@novell.com)
24
25 using System;
26 using System.Collections;
27 using Mono.WebBrowser;
28 using Mono.WebBrowser.DOM;
29
30
31 namespace Mono.Mozilla.DOM
32 {
33         internal class AttributeCollection : NodeList, IAttributeCollection
34         {
35                 protected new nsIDOMNamedNodeMap unmanagedNodes;
36
37                 public AttributeCollection (WebBrowser control, nsIDOMNamedNodeMap nodeMap)
38                         : base (control, true)
39                 {
40                         if (control.platform != control.enginePlatform)
41                                 unmanagedNodes = nsDOMNamedNodeMap.GetProxy (control, nodeMap);
42                         else
43                                 unmanagedNodes = nodeMap;
44                 }
45                 
46                 public AttributeCollection (WebBrowser control) : base (control) 
47                 {
48                 }
49                 
50                 internal override void Load ()
51                 {
52                         if (unmanagedNodes == null) return;
53                         Clear ();
54                         uint count;
55                         unmanagedNodes.getLength (out count);
56                         nodeCount = (int) count;
57                         nodes = new Node[count];
58                         for (int i = 0; i < count; i++) {
59                                 nsIDOMNode node;
60                                 unmanagedNodes.item ((uint) i, out node);
61                                 nodes[i] = new Attribute (control, node as nsIDOMAttr);
62                         }
63                 }
64
65                 public override int Count {
66                         get {
67                                 if (unmanagedNodes != null && nodes == null)
68                                         Load ();
69                                 return nodeCount; 
70                         }
71                 }
72
73                 #region IList members
74                 public new IAttribute this[int index]
75                 {
76                         get
77                         {
78                                 if (index < 0 || index >= Count)
79                                         throw new ArgumentOutOfRangeException ("index");
80                                 return nodes[index] as IAttribute;
81                         }
82                         set { }
83                 }
84
85                 public IAttribute this[string name]
86                 {
87                         get
88                         {
89                                 for (int i = 0; i < nodes.Length; i++) {
90                                         if (((IAttribute) nodes[i]).Name.Equals (name))
91                                                 return nodes[i] as IAttribute;
92                                 }
93                                 return null;
94                         }
95                 }
96
97                 public bool Exists (string name)
98                 {
99                         if (unmanagedNodes == null) return false;
100                         Base.StringSet (storage, name);
101                         nsIDOMNode ret;
102                         unmanagedNodes.getNamedItem (storage, out ret);
103                         return ret != null;
104                 }
105                 #endregion
106                 
107                 public override int GetHashCode () {
108                         if (unmanagedNodes == null) return base.GetHashCode ();
109                         return this.unmanagedNodes.GetHashCode ();
110                 }
111         }
112 }