/// <summary> /// Creates wrapper for nsIDOMNode object /// </summary> /// <param name="domObject"></param> /// <returns></returns> internal static GeckoNode CreateDomNodeWrapper(mozIDOMWindowProxy window, nsIDOMNode domObject) { // if null -> return null if (domObject == null) { return(null); } var nodeType = (NodeType) new WebIDL.Node((mozIDOMWindowProxy)window, (nsISupports)domObject).NodeType; // by nodeType we can find proper wrapper faster, than perform QueryInterface switch (nodeType) { case NodeType.Element: /* /* nsIDOMHTMLElement*/ nsIDOMElement htmlElement = Xpcom.QueryInterface </* /* nsIDOMHTMLElement*/ nsIDOMElement>(domObject); if (htmlElement != null) { return(GeckoHtmlElement.Create(window, htmlElement)); } nsIDOMElement element = Xpcom.QueryInterface <nsIDOMElement>(domObject); if (element != null) { return(GeckoElement.CreateDomElementWrapper(window, element)); } break; case NodeType.Attribute: #if PORTFF60 nsIDOMAttr attr = Xpcom.QueryInterface <nsIDOMAttr>(domObject); if (attr != null) { return(GeckoAttribute.CreateAttributeWrapper(attr)); } #endif break; case NodeType.Comment: nsIDOMComment comment = Xpcom.QueryInterface <nsIDOMComment>(domObject); if (comment != null) { return(GeckoComment.CreateCommentWrapper(window, comment)); } break; case NodeType.DocumentFragment: nsIDOMDocumentFragment fragment = Xpcom.QueryInterface <nsIDOMDocumentFragment>(domObject); if (fragment != null) { return(DOM.DocumentFragment.CreateDocumentFragmentWrapper(window, fragment)); } break; } // if we don't handle this type - just create GeckoNode return(new GeckoNode(window, domObject)); }
/// <summary> /// Creates wrapper for nsIDOMNode object /// </summary> /// <param name="domObject"></param> /// <returns></returns> internal static GeckoNode CreateDomNodeWrapper(nsIDOMNode domObject) { // if null -> return null if (domObject == null) { return(null); } var nodeType = (NodeType)domObject.GetNodeTypeAttribute(); // by nodeType we can find proper wrapper faster, than perform QueryInterface switch (nodeType) { case NodeType.Element: nsIDOMHTMLElement htmlElement = Xpcom.QueryInterface <nsIDOMHTMLElement>(domObject); if (htmlElement != null) { return(GeckoHtmlElement.Create(htmlElement)); } nsIDOMElement element = Xpcom.QueryInterface <nsIDOMElement>(domObject); if (element != null) { return(GeckoElement.CreateDomElementWrapper(element)); } break; case NodeType.Attribute: nsIDOMAttr attr = Xpcom.QueryInterface <nsIDOMAttr>(domObject); if (attr != null) { return(GeckoAttribute.CreateAttributeWrapper(attr)); } break; case NodeType.Comment: nsIDOMComment comment = Xpcom.QueryInterface <nsIDOMComment>(domObject); if (comment != null) { return(GeckoComment.CreateCommentWrapper(comment)); } break; case NodeType.DocumentFragment: nsIDOMDocumentFragment fragment = Xpcom.QueryInterface <nsIDOMDocumentFragment>(domObject); if (fragment != null) { return(DOM.DocumentFragment.CreateDocumentFragmentWrapper(fragment)); } break; } // if we don't handle this type - just create GeckoNode return(new GeckoNode(domObject)); }