Merge "Adding GridLayout" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / layouting / grid.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/grid.h>
19
20 //EXTERNAL HEADERS
21 //INTERNAL HEADERS
22 #include <dali-toolkit/internal/layouting/grid-impl.h>
23
24 namespace Dali
25 {
26 namespace Toolkit
27 {
28
29 Grid::Grid()
30 {
31 }
32
33 Grid Grid::New()
34 {
35   Internal::GridPtr internal = Internal::Grid::New();
36   return Grid( internal.Get() );
37 }
38
39 Grid Grid::DownCast( BaseHandle handle )
40 {
41   return Grid( dynamic_cast< Dali::Toolkit::Internal::Grid*>( handle.GetObjectPtr() ) );
42 }
43
44 Grid::Grid( const Grid& other )
45 : LayoutGroup( other )
46 {
47 }
48
49 Grid& Grid::operator=( const Grid& other )
50 {
51   if( &other != this )
52   {
53     LayoutGroup::operator=( other );
54   }
55   return *this;
56 }
57
58 void Grid::SetNumberOfColumns( int columns )
59 {
60   GetImplementation(*this).SetNumberOfColumns( columns );
61 }
62
63 int Grid::GetNumberOfColumns() const
64 {
65   return GetImplementation(*this).GetNumberOfColumns();
66 }
67
68 Grid::Grid( Dali::Toolkit::Internal::Grid* object )
69 : LayoutGroup( object )
70 {
71 }
72
73 } // namespace Toolkit
74 } // namespace Dali