97b42a8494895f3d3ddab893aa79000872983a88
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / scrollable / item-view / default-item-layout.cpp
1 /*
2  * Copyright (c) 2020 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
18 // HEADER
19 #include <dali-toolkit/public-api/controls/scrollable/item-view/default-item-layout.h>
20
21 // INTERNAL INCLUDES
22 #include <dali-toolkit/internal/controls/scrollable/item-view/depth-layout.h>
23 #include <dali-toolkit/internal/controls/scrollable/item-view/grid-layout.h>
24 #include <dali-toolkit/internal/controls/scrollable/item-view/spiral-layout.h>
25
26 namespace Dali
27 {
28 namespace Toolkit
29 {
30 namespace DefaultItemLayout
31 {
32 ItemLayoutPtr New(Type type)
33 {
34   ItemLayoutPtr itemLayout;
35
36   switch(type)
37   {
38     case DEPTH:
39     {
40       itemLayout = Internal::DepthLayout::New();
41       break;
42     }
43
44     case GRID:
45     {
46       itemLayout = Internal::GridLayout::New();
47       break;
48     }
49
50     case LIST:
51     {
52       Internal::GridLayoutPtr layout = Internal::GridLayout::New();
53       layout->SetNumberOfColumns(1);
54       itemLayout = layout;
55       break;
56     }
57
58     case SPIRAL:
59     {
60       itemLayout = Internal::SpiralLayout::New();
61       break;
62     }
63   }
64
65   return itemLayout;
66 }
67
68 } // namespace DefaultItemLayout
69
70 } // namespace Toolkit
71
72 } // namespace Dali