open source

This commit is contained in:
lvfulong
2020-11-11 16:17:13 +08:00
parent 4d989f3ecb
commit bc4ca748de
2441 changed files with 623057 additions and 2 deletions
@@ -0,0 +1,55 @@
/**
@file JSXml.h
@brief
@author James
@version 1.0
@date 2015_5_5
*/
#ifndef __JSDOMParser_H__
#define __JSDOMParser_H__
#include <stdio.h>
#include "../JSInterface/JSInterface.h"
#include "resource/JCFileResManager.h"
#include "JSXmlNode.h"
/**
* @brief
*/
namespace laya
{
class JSDOMParser : public JsObjBase, public JSObjNode
{
public:
static JsObjClassInfo JSCLSINFO;
static void exportJS();
JSDOMParser();
~JSDOMParser();
JsValue parseFromString(const char * str,const char *type);
const char* getSrc();
void setSrc( const char* p_sSrc );
void SetOnload( JSValueAsParam p_pFunction );
JsValue GetOnload();
void SetOnError( JSValueAsParam p_pFunction );
JsValue GetOnError();
JsValue getXml();
public:
void onLoadedCallJSFunction(std::string& str,std::weak_ptr<int>& callbackref);
void onErrorCallJSFunction( int e , std::weak_ptr<int>& callbackref);
public:
std::shared_ptr<int> m_CallbackRef;
public:
std::string m_sUrl;
JsObjHandle m_pOnLoadJSFunction;
JsObjHandle m_pOnErrorJSFunction;
private:
JSXmlDocument* jsDOC;
};
}
#endif //__JSDOMParser_H__
//-----------------------------END FILE--------------------------------