X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Fbuilder%2Fbuilder-get-is.inl.h;h=ae178376c51068022cd039076c601692f6ec6d15;hp=2efc4db9468018b079614f7b7b39e1c7b59ed4b6;hb=003fe1b0cb2900bd60063649e46fbbbb6e7d997d;hpb=306d2f61a1b64179e801fa8a0bb2bd7b4e9dd682 diff --git a/dali-toolkit/internal/builder/builder-get-is.inl.h b/dali-toolkit/internal/builder/builder-get-is.inl.h index 2efc4db..ae17837 100644 --- a/dali-toolkit/internal/builder/builder-get-is.inl.h +++ b/dali-toolkit/internal/builder/builder-get-is.inl.h @@ -2,7 +2,7 @@ #define __DALI_TOOLKIT_INTERNAL_BUILDER_GET_IS_INL__ /* - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2016 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -41,11 +41,36 @@ inline OptionalChild IsChild(const TreeNode* node, const std::string& childName) } } +inline OptionalChild IsChildIgnoreCase(const TreeNode* node, const std::string& childName) +{ + if( node ) + { + const TreeNode* c = node->GetChildIgnoreCase(childName); + if( NULL != c ) + { + return OptionalChild( *c ); + } + else + { + return OptionalChild(); + } + } + else + { + return OptionalChild(); + } +} + inline OptionalChild IsChild(const TreeNode& node, const std::string& childName) { return IsChild(&node, childName); } +inline OptionalChild IsChildIgnoreCase(const TreeNode& node, const std::string& childName) +{ + return IsChildIgnoreCase(&node, childName); +} + inline OptionalString IsString(const OptionalChild& node) { if( node && (*node).GetType() == TreeNode::STRING ) @@ -57,6 +82,7 @@ inline OptionalString IsString(const OptionalChild& node) return OptionalString(); } } + inline OptionalFloat IsFloat(const OptionalChild& node) { OptionalFloat ret; @@ -109,6 +135,7 @@ inline OptionalBoolean IsBoolean(const OptionalChild& node) } } + // copy N Numbers template inline bool CopyNumbers(TreeNode::ConstIterator iter, int N, T& vector)