Fixed unparenting a layout item from a layout group
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / layouting / layout-child-impl.h
1 #ifndef DALI_TOOLKIT_INTERNAL_LAYOUTING_LAYOUT_CHILD_H
2 #define DALI_TOOLKIT_INTERNAL_LAYOUTING_LAYOUT_CHILD_H
3
4 /*
5  * Copyright (c) 2018 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 #include <dali-toolkit/public-api/dali-toolkit-common.h>
21
22 namespace Dali
23 {
24 namespace Toolkit
25 {
26 namespace Internal
27 {
28 class LayoutParent;
29
30 /**
31  * Interface that allows a layout to determine its layout parent.
32  *
33  * This is useful for LayoutItem to determine it's parent, without accessing
34  * via LayoutGroup, which is a subclass of LayoutItem (Super classes shouldn't
35  * know / care about derived classes)
36  */
37 class DALI_TOOLKIT_API LayoutChild
38 {
39 public:
40   /**
41    * Set the parent of this layout.
42    */
43   virtual void SetParent( LayoutParent* parent ) = 0;
44
45   /**
46    * Get the parent of this layout.
47    */
48   virtual LayoutParent* GetParent() = 0;
49
50 protected:
51   virtual ~LayoutChild()
52   {
53   }
54 };
55
56
57 } // namespace Internal
58 } // namespace Toolkit
59 } // namespace Dali
60
61 #endif //DALI_TOOLKIT_INTERNAL_LAYOUTING_LAYOUT_CHILD_H