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

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 _JSDOMNAMEDNODEMAP_H_
  23. #define _JSDOMNAMEDNODEMAP_H_
  24. #include "JSDOM.hpp"
  25. #include <xercesc/dom/DOMNamedNodeMap.hpp>
  26. using namespace xercesc;
  27. class JSDOMNode;
  28. class JSDOMDocument;
  29. class JSDOMNamedNodeMap
  30. {
  31. public:
  32. static JSObject *JSInit(JSContext *cx, JSObject *obj = NULL);
  33. JSObject *getJSObject(JSContext *cx);
  34. static JSObject *newJSObject(JSContext *cx);
  35. JSDOMNamedNodeMap(DOMNamedNodeMap *map, JSDOMDocument *ownerDoc);
  36. JSDOMNamedNodeMap(DOMNamedNodeMap *map, JSDOMNode *ownerNode);
  37. // properties
  38. int getLength();
  39. // methods
  40. JSDOMNode *getNamedItem( JSString *name );
  41. JSDOMNode *item( int index );
  42. JSDOMNode *getNamedItemNS( JSString *namespaceURI, JSString *localName );
  43. protected:
  44. struct _JSinternalStruct {
  45. JSObject *o;
  46. JSContext *c;
  47. _JSinternalStruct() : o(NULL) {};
  48. ~_JSinternalStruct() { if (o) JS_SetPrivate(NULL,o, NULL); };
  49. };
  50. _JSinternalStruct _JSinternal;
  51. // JavaScript Variable IDs
  52. enum {
  53. JSVAR_length,
  54. JSVAR_LASTENUM
  55. };
  56. static JSBool JSGetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp);
  57. private:
  58. static JSClass _jsClass;
  59. static JSFunctionSpec _JSFunctionSpec[];
  60. static JSPropertySpec _JSPropertySpec[];
  61. static void JSDestructor(JSContext *cx, JSObject *obj);
  62. static JSBool JSFUNC_getNamedItem(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  63. static JSBool JSFUNC_getNamedItemNS(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  64. static JSBool JSFUNC_item(JSContext *cx, JSObject *obj, uintN argc, jsval *argv, jsval *rval);
  65. private:
  66. DOMNamedNodeMap *_map;
  67. JSDOMDocument *_ownerDoc;
  68. JSDOMNode *_ownerNode;
  69. };
  70. #endif