X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=plugins%2Fdali-script-v8%2Fsrc%2Futils%2Fv8-utils.h;h=5a86f39c62c828a67be348326f0f42f905577a5d;hb=941eb8eab76fca967bb8e21456179fc9b4eafea6;hp=534c5472f14270936b8e1ebfd6cf34b95c4baf5d;hpb=826a077bb3183b5d317bfb22e14ab4e217d26f40;p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git diff --git a/plugins/dali-script-v8/src/utils/v8-utils.h b/plugins/dali-script-v8/src/utils/v8-utils.h index 534c547..5a86f39 100644 --- a/plugins/dali-script-v8/src/utils/v8-utils.h +++ b/plugins/dali-script-v8/src/utils/v8-utils.h @@ -96,6 +96,14 @@ void GetFileName( const std::string& fullPathName, std::string& fileName); void GetModuleName( const std::string& fileName, std::string& moduleName ); /** + * Compare whether two DALi property maps are identical + * @param[in] map1 The first property map to be compared + * @param[in] map2 The second property map to be compared + * @return true if the two specified property maps are identical or false if not. + */ +bool IsPropertyMapIdentical(Property::Map map1, Property::Map map2); + +/** * Report an exception by writing as a warning to the Dali Log * * @param[in] try_catch The v8 TryCatch exception object @@ -133,14 +141,6 @@ std::string GetJavaScriptFunctionName( const char* functionName ); std::string PropertyNameToJavaScriptName(const std::string& hyphenatedName); /** - * Convert camelCase to hyphenated to (Wrapper property name to Dali property) - * E.g. anchorPoint to "anchor-point" - * @param[in] camelCase a std::string camelCase - * @return a hyphenated std::string conversion - */ - std::string JavaScriptNameToPropertyName(const std::string& camelCase); - -/** * Script error, throws an exception */ void ScriptError( const char* function, v8::Isolate* isolate, std::string errorString ); @@ -195,7 +195,7 @@ Property::Value GetPropertyValueFromObject( bool& found, v8::Isolate* isolate, c /** * Given a JavaScript object with * @param [in] object JavaScrript object - * @return DALi ProperyMap from the JavaScript object + * @return DALi ProperyMap from the JavaScript object */ Property::Map GetPropertyMapFromObject( v8::Isolate* isolate, const v8::Local& object); @@ -252,6 +252,13 @@ bool GetBooleanParameter( unsigned int index, bool& found, v8::Isolate* isolate, /** * @param [in] index parameter index, e.g. callMyFunc( index0, index1, index2). * @param[out] found whether the parameter was found + * @return ArrayBufferView from the JavaScript function arguments + */ +void* GetArrayBufferViewParameter( unsigned int index, bool& found, v8::Isolate* isolate, const v8::FunctionCallbackInfo< v8::Value >& args ); + +/** + * @param [in] index parameter index, e.g. callMyFunc( index0, index1, index2). + * @param[out] found whether the parameter was found * @return DALi Handle value from the JavaScript function arguments */ Handle GetHandleParameter( unsigned int index, bool& found, v8::Isolate* isolate, const v8::FunctionCallbackInfo< v8::Value >& args );