c6fb7aaa329f40441b2ba086bf892fccd229fccf
[platform/core/uifw/dali-core.git] / dali / internal / update / nodes / node-declarations.h
1 #ifndef DALI_INTERNAL_SCENE_GRAPH_NODE_DECLARATIONS_H
2 #define DALI_INTERNAL_SCENE_GRAPH_NODE_DECLARATIONS_H
3
4 /*
5  * Copyright (c) 2023 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/devel-api/common/bitwise-enum.h>
23 #include <dali/devel-api/common/owner-container.h>
24 #include <dali/internal/common/owner-pointer.h>
25 #include <dali/public-api/common/dali-vector.h>
26 #include <dali/public-api/common/vector-wrapper.h>
27
28 namespace Dali
29 {
30 namespace Internal
31 {
32 namespace SceneGraph
33 {
34 class Node;
35
36 using NodeContainer = Dali::Vector<Node*>;
37 using NodeIter      = NodeContainer::Iterator;
38 using NodeConstIter = NodeContainer::ConstIterator;
39
40 /**
41  * Flag whether property has changed, during the Update phase.
42  */
43 enum class NodePropertyFlags : uint8_t
44 // 8 bits is enough for 5 flags (compiler will check it)
45 {
46   NOTHING          = 0x000,
47   TRANSFORM        = 0x001,
48   VISIBLE          = 0x002,
49   COLOR            = 0x004,
50   CHILD_DELETED    = 0x008,
51   CHILDREN_REORDER = 0x010,
52   ALL              = (CHILDREN_REORDER << 1) - 1 // all the flags
53 };
54
55 struct NodeDepthPair
56 {
57   Node*    node;
58   uint32_t sortedDepth;
59   NodeDepthPair(Node* node, uint32_t sortedDepth)
60   : node(node),
61     sortedDepth(sortedDepth)
62   {
63   }
64 };
65
66 struct NodeDepths
67 {
68   NodeDepths() = default;
69
70   void Add(Node* node, uint32_t sortedDepth)
71   {
72     nodeDepths.push_back(NodeDepthPair(node, sortedDepth));
73   }
74
75   std::vector<NodeDepthPair> nodeDepths;
76 };
77
78 } // namespace SceneGraph
79
80 } // namespace Internal
81
82 // specialization has to be done in the same namespace
83 template<>
84 struct EnableBitMaskOperators<Internal::SceneGraph::NodePropertyFlags>
85 {
86   static const bool ENABLE = true;
87 };
88
89 } // namespace Dali
90
91 #endif // DALI_INTERNAL_SCENE_GRAPH_NODE_DECLARATIONS_H