JSDOMElement.hpp
上传用户:xqtpzdz
上传日期:2022-05-21
资源大小:1764k
文件大小:4k
源码类别:

xml/soap/webservice

开发平台:

Visual C++

  1. /****************License************************************************
  2.  * Vocalocity OpenVXI
  3.  * Copyright (C) 2004-2005 by Vocalocity, Inc. All Rights Reserved.
  4.  * This program is free software; you can redistribute it and/or
  5.  * modify it under the terms of the GNU General Public License
  6.  * as published by the Free Software Foundation; either version 2
  7.  * of the License, or (at your option) any later version.
  8.  *  
  9.  * This program is distributed in the hope that it will be useful,
  10.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.  * GNU General Public License for more details.
  13.  *
  14.  * You should have received a copy of the GNU General Public License
  15.  * along with this program; if not, write to the Free Software
  16.  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
  17.  * Vocalocity, the Vocalocity logo, and VocalOS are trademarks or 
  18.  * registered trademarks of Vocalocity, Inc. 
  19.  * OpenVXI is a trademark of Scansoft, Inc. and used under license 
  20.  * by Vocalocity.
  21.  ***********************************************************************/
  22. #ifndef _JSDOMELEMENT_H
  23. #define _JSDOMELEMENT_H
  24. #include "JSDOMNode.hpp"
  25. #include "JSDOMAttr.hpp"
  26. #include "JSDOMNodeList.hpp"
  27. #include <xercesc/dom/DOMNode.hpp>
  28. #include <xercesc/dom/DOMElement.hpp>
  29. using namespace xercesc;
  30. class JSDOMAttr;
  31. class JSDOMNodeList;
  32. class JSDOMElement : public JSDOMNode
  33. {
  34. public:
  35. static JSObject *JSInit(JSContext *cx, JSObject *obj = NULL);
  36. virtual JSObject *getJSObject(JSContext *cx);
  37. static JSObject *newJSObject(JSContext *cx);
  38. JSDOMElement( DOMElement *elem, JSDOMDocument *doc = NULL );
  39. virtual ~JSDOMElement(){}
  40. // properties
  41. JSString* getTagName();
  42. // methods
  43. JSString* getAttribute(JSString* name) ;
  44. JSDOMAttr* getAttributeNode(JSString* name) ;
  45. JSDOMNodeList* getElementsByTagName(JSString* name);
  46. JSString* getAttributeNS(JSString* namespaceURI, JSString* localName);
  47. JSDOMAttr* getAttributeNodeNS(JSString* namespaceURI, JSString* localName);
  48. JSDOMNodeList* getElementsByTagNameNS(JSString* namespaceURI, JSString* localName);
  49. bool hasAttribute(JSString* name);
  50. bool hasAttributeNS(JSString* namespaceURI, JSString* localName);
  51. protected:
  52. // JavaScript Variable IDs
  53. enum {
  54. JSVAR_tagName = JSDOMNode::JSVAR_LASTENUM,
  55. JSVAR_LASTENUM
  56. };
  57. static JSBool JSGetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
  58. private:
  59. static JSClass _jsClass;
  60. static JSPropertySpec _JSPropertySpec[];
  61. static JSFunctionSpec _JSFunctionSpec[];
  62. static void JSDestructor(JSContext *cx, JSObject *obj);
  63. static JSBool JSFUNC_getAttribute(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  64. static JSBool JSFUNC_getAttributeNS(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  65. static JSBool JSFUNC_getAttributeNode(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  66. static JSBool JSFUNC_getAttributeNodeNS(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  67. static JSBool JSFUNC_getElementsByTagName(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  68. static JSBool JSFUNC_getElementsByTagNameNS(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  69. static JSBool JSFUNC_hasAttribute(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  70. static JSBool JSFUNC_hasAttributeNS(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  71. private:
  72. DOMElement *_elem;
  73. };
  74. #endif