Control impl layout code for Margin removed
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / layouting / vbox-layout.cpp
1 /*
2  * Copyright (c) 2018 Samsung Electronics Co., Ltd.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 //CLASS HEADER
18 #include <dali-toolkit/devel-api/layouting/vbox-layout.h>
19
20 //EXTERNAL HEADERS
21 //INTERNAL HEADERS
22 #include <dali-toolkit/internal/layouting/vbox-layout-impl.h>
23
24 namespace Dali
25 {
26 namespace Toolkit
27 {
28
29 VboxLayout::VboxLayout()
30 {
31 }
32
33 VboxLayout VboxLayout::New()
34 {
35   Internal::VboxLayoutPtr internal = Internal::VboxLayout::New();
36   return VboxLayout( internal.Get() );
37 }
38
39 VboxLayout VboxLayout::DownCast( BaseHandle handle )
40 {
41   return VboxLayout( dynamic_cast< Dali::Toolkit::Internal::VboxLayout*>( handle.GetObjectPtr() ) );
42 }
43
44 VboxLayout::VboxLayout( const VboxLayout& other )
45 : LayoutGroup( other )
46 {
47 }
48
49 VboxLayout& VboxLayout::operator=( const VboxLayout& other )
50 {
51   if( &other != this )
52   {
53     LayoutGroup::operator=( other );
54   }
55   return *this;
56 }
57
58 void VboxLayout::SetCellPadding( LayoutSize size )
59 {
60   GetImplementation(*this).SetCellPadding( size );
61 }
62
63 LayoutSize VboxLayout::GetCellPadding()
64 {
65   return GetImplementation(*this).GetCellPadding();
66 }
67
68 VboxLayout::VboxLayout( Dali::Toolkit::Internal::VboxLayout* object )
69 : LayoutGroup( object )
70 {
71 }
72
73 } // namespace Toolkit
74 } // namespace Dali