d0afb7099e226f13c78e09d1f09069a1585f9157
[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  * @SINCE_1_0.0
35  */
36 class RelayoutContainer
37 {
38 public:
39
40   /**
41    * @brief Default constructor
42    *
43    * @SINCE_1_0.0
44    */
45   RelayoutContainer() {}
46
47   /**
48    * @brief Virtual destructor
49    * @SINCE_1_0.0
50    */
51   virtual ~RelayoutContainer() {}
52
53   /**
54    * @brief Add relayout information to the container if it does'nt already exist
55    *
56    * @SINCE_1_0.0
57    * @param actor The actor to relayout
58    * @param size The size to relayout
59    */
60   virtual void Add( const Actor& actor, const Vector2& size ) = 0;
61
62 };
63
64 } // namespace Dali
65
66 #endif // __DALI_RELAYOUT_CONTAINER_H__