X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fupdate%2Fnodes%2Fnode-declarations.h;h=a0a382fa6e4d7b28b0cbdaec06327dc3ce66a059;hb=55827866fcb8c7ee47581ac4335a3390472090e8;hp=853cb594a1609e050995981c0eb8fba5e9b09422;hpb=4269f2c69885950e7386cd7b7b52325d595a52e7;p=platform%2Fcore%2Fuifw%2Fdali-core.git diff --git a/dali/internal/update/nodes/node-declarations.h b/dali/internal/update/nodes/node-declarations.h old mode 100644 new mode 100755 index 853cb59..a0a382f --- a/dali/internal/update/nodes/node-declarations.h +++ b/dali/internal/update/nodes/node-declarations.h @@ -1,8 +1,8 @@ -#ifndef __DALI_INTERNAL_SCENE_GRAPH_NODE_DECLARATIONS_H__ -#define __DALI_INTERNAL_SCENE_GRAPH_NODE_DECLARATIONS_H__ +#ifndef DALI_INTERNAL_SCENE_GRAPH_NODE_DECLARATIONS_H +#define DALI_INTERNAL_SCENE_GRAPH_NODE_DECLARATIONS_H /* - * Copyright (c) 2014 Samsung Electronics Co., Ltd. + * Copyright (c) 2019 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. @@ -20,6 +20,7 @@ // INTERNAL INCLUDES #include +#include #include #include @@ -34,16 +35,31 @@ namespace SceneGraph class Node; -typedef OwnerContainer< Node* > NodeOwnerContainer; - typedef Dali::Vector< Node* > NodeContainer; typedef NodeContainer::Iterator NodeIter; typedef NodeContainer::ConstIterator NodeConstIter; +/** + * Flag whether property has changed, during the Update phase. + */ +enum class NodePropertyFlags : uint8_t +// 8 bits is enough for 4 flags (compiler will check it) +{ + NOTHING = 0x000, + TRANSFORM = 0x001, + VISIBLE = 0x002, + COLOR = 0x004, + CHILD_DELETED = 0x008, + ALL = ( CHILD_DELETED << 1 ) - 1 // all the flags +}; + } // namespace SceneGraph } // namespace Internal +// specialization has to be done in the same namespace +template<> struct EnableBitMaskOperators< Internal::SceneGraph::NodePropertyFlags > { static const bool ENABLE = true; }; + } // namespace Dali -#endif // __DALI_INTERNAL_SCENE_GRAPH_NODE_DECLARATIONS_H__ +#endif // DALI_INTERNAL_SCENE_GRAPH_NODE_DECLARATIONS_H