Tizen 2.1 base
[framework/osp/uifw.git] / src / ui / effects / inc / renderer / engine-model / FUiEffects_RendererEngineModelGroup.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://floralicense.org/license/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an AS IS BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                FUiEffects_RendererEngineModelGroup.h
20  * @brief       Class represents Node which can hold child nodes
21  *
22  */
23
24 #ifndef _FUI_EFFECTS_INTERNAL_RENDERER_ENGINE_MODEL_GROUP_H_
25 #define _FUI_EFFECTS_INTERNAL_RENDERER_ENGINE_MODEL_GROUP_H_
26
27 #include <renderer/engine-model/FUiEffects_RendererEngineModelForwardDeclaration.h>
28 #include <renderer/engine-model/FUiEffects_RendererEngineModelVisitor.h>
29 #include <renderer/engine-model/FUiEffects_RendererEngineModelNode.h>
30
31 #include <vector>
32
33 namespace Tizen { namespace Ui { namespace Effects { namespace _Renderer { namespace EngineModel
34 {
35
36 class Group:
37         public Node
38 {
39 public:
40         typedef std::vector<NodePtr> ChildrenListType;
41         typedef ChildrenListType::size_type ChildrenListSizeType;
42
43         Group(void);
44
45         virtual ~Group(void);
46
47         virtual void Visit(Visitor& v);
48
49         virtual bool AddChild(NodePtr pChild);
50         virtual bool RemoveChild(NodePtr pChild);
51         virtual void Clear(void);
52         virtual ChildrenListSizeType ChildrenCount();
53         virtual bool RemoveChild(ChildrenListSizeType index);
54         virtual NodePtr GetChild(ChildrenListSizeType index);
55
56         virtual void InvalidateBoundBox(void); //called to inform that child bounds or position changed
57         virtual const Aabb& GetBoundBox(void);
58
59         virtual void SetWorld(const Math::Matrix4f& arg);
60         virtual void SetLocal(const Math::Matrix4f& arg);
61
62         virtual bool AttachedToParent(Group* pParent);
63         virtual bool RemoveFromParent(Group* pParent);
64         virtual void ParentMoved(Group* pParent);
65
66 protected:
67         virtual void ValidateBoundBox(void);
68
69 private:
70         void InternalRemoveChild(ChildrenListSizeType index);
71
72 protected:
73         bool _invalidBoundBox;
74         ChildrenListType _children;
75 };
76
77 }}}}} //Tizen::Ui::Effects::_Renderer::EngineModel
78
79 #endif //_FUI_EFFECTS_INTERNAL_RENDERER_ENGINE_MODEL_GROUP_H_