Refactored Item Layouts
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / scrollable / item-view / default-item-layout.cpp
1 /*
2  * Copyright (c) 2015 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
29 namespace Toolkit
30 {
31
32 namespace DefaultItemLayout
33 {
34
35 ItemLayoutPtr New( Type type )
36 {
37   ItemLayoutPtr itemLayout;
38
39   switch ( type )
40   {
41     case DEPTH:
42     {
43       itemLayout = Internal::DepthLayout::New();
44       break;
45     }
46
47     case GRID:
48     {
49       itemLayout = Internal::GridLayout::New();
50       break;
51     }
52
53     case LIST:
54     {
55       Internal::GridLayoutPtr layout = Internal::GridLayout::New();
56       layout->SetNumberOfColumns( 1 );
57       itemLayout = layout;
58       break;
59     }
60
61     case SPIRAL:
62     {
63       itemLayout = Internal::SpiralLayout::New();
64       break;
65     }
66   }
67
68   return itemLayout;
69 }
70
71 } // namespace DefaultItemLayout
72
73 } // namespace Toolkit
74
75 } // namespace Dali