X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fupdate%2Fnodes%2Fnode-declarations.h;h=a0a382fa6e4d7b28b0cbdaec06327dc3ce66a059;hb=refs%2Ftags%2Faccepted%2Ftizen%2Funified%2F20190911.111620;hp=458b5c88d17911095d796901c91f7d4e4c57289b;hpb=7c6f8ed43521c52d6cc46a7e3e3e40069514f818;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 458b5c8..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,8 +20,9 @@ // INTERNAL INCLUDES #include +#include +#include #include -#include namespace Dali { @@ -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