JSDOMText.cpp
上传用户: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. #include "JSDOMText.hpp"
  23. // JavaScript class definition
  24. JSClass JSDOMText::_jsClass = {
  25. "Text", JSCLASS_HAS_PRIVATE,
  26. JS_PropertyStub, JS_PropertyStub,
  27. JSDOMText::JSGetProperty, JS_PropertyStub,
  28. JS_EnumerateStub, JS_ResolveStub,
  29. JS_ConvertStub, JSDOMText::JSDestructor,
  30. 0, 0, 0, 0, 
  31. 0, 0, 0, 0
  32. };
  33. // JavaScript Initialization Method
  34. JSObject *JSDOMText::JSInit(JSContext *cx, JSObject *obj) {
  35. if (obj==NULL)
  36. obj = JS_GetGlobalObject(cx);
  37. jsval oldobj;
  38. if (JS_TRUE == JS_LookupProperty(cx, obj, JSDOMText::_jsClass.name, &oldobj) && JSVAL_IS_OBJECT(oldobj))
  39. return JSVAL_TO_OBJECT(oldobj);
  40. JSObject *newobj = JS_InitClass(cx, obj, NULL, &JSDOMText::_jsClass,
  41.                                       NULL, 0,
  42.                                       NULL, NULL,
  43.                                       NULL, NULL);
  44. if (newobj) {
  45. InitCharacterDataObject(cx, newobj);
  46. }
  47. return newobj;
  48. }
  49. bool JSDOMText::InitTextObject(JSContext *cx, JSObject *obj)
  50. {
  51. return InitCharacterDataObject(cx, obj);
  52. }
  53. // JavaScript Destructor
  54. void JSDOMText::JSDestructor(JSContext *cx, JSObject *obj) {
  55. JSDOMText *p = (JSDOMText*)JS_GetPrivate(cx, obj);
  56. if (p) delete p;
  57. }
  58. JSBool JSDOMText::JSGetProperty(JSContext *cx, JSObject *obj, jsval id, jsval *vp) {
  59. return JSDOMCharacterData::JSGetProperty(cx, obj, id, vp);
  60. }
  61. // JavaScript Object Linking
  62. JSObject *JSDOMText::getJSObject(JSContext *cx) {
  63. if (!cx) return NULL;
  64. if (!_JSinternal.o) {
  65. _JSinternal.o = newJSObject(cx);
  66. _JSinternal.c = cx;
  67. if (!JS_SetPrivate(cx, _JSinternal.o, this)) return NULL;
  68. }
  69. return _JSinternal.o;
  70. }
  71. JSObject *JSDOMText::newJSObject(JSContext *cx) {
  72. return JS_NewObject(cx, &JSDOMText::_jsClass, NULL, NULL);
  73. }
  74. JSDOMText::JSDOMText( DOMText *text, JSDOMDocument *doc ) : JSDOMCharacterData(text, doc)
  75. {
  76. }