[dali_1.0.36] Merge branch 'tizen'
[platform/core/uifw/dali-core.git] / dali / public-api / size-negotiation / relayout-container.h
1 #ifndef __DALI_RELAYOUT_CONTAINER_H__
2 #define __DALI_RELAYOUT_CONTAINER_H__
3
4 /*
5  * Copyright (c) 2015 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/public-api/actors/actor.h>
23 #include <dali/public-api/math/vector2.h>
24
25 namespace Dali
26 {
27
28 class RelayoutContainer;
29 typedef RelayoutContainer* RelayoutContainerPtr;
30
31
32 /**
33  * @brief Interface to encapsulate information required for relayout
34  */
35 class RelayoutContainer
36 {
37 public:
38
39   /**
40    * @brief Default constructor
41    *
42    */
43   RelayoutContainer() {}
44
45   /**
46    * @brief Virtual destructor
47    */
48   virtual ~RelayoutContainer() {}
49
50   /**
51    * @brief Add relayout information to the container if it does'nt already exist
52    *
53    * @param actor The actor to relayout
54    * @param size The size to relayout
55    */
56   virtual void Add( const Actor& actor, const Vector2& size ) = 0;
57
58 };
59
60 } // namespace Dali
61
62 #endif // __DALI_RELAYOUT_CONTAINER_H__