[dali_2.3.20] Merge branch 'devel/master'
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / devel-api / controls / page-turn-view / page-turn-landscape-view.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 // CLASS HEADER
19 #include <dali-toolkit/devel-api/controls/page-turn-view/page-turn-landscape-view.h>
20
21 // INTERNAL INCLUDES
22 #include <dali-toolkit/internal/controls/page-turn-view/page-turn-landscape-view-impl.h>
23
24 namespace Dali
25 {
26 namespace Toolkit
27 {
28 PageTurnLandscapeView::PageTurnLandscapeView()
29 : PageTurnView()
30 {
31 }
32
33 PageTurnLandscapeView::PageTurnLandscapeView(const PageTurnLandscapeView& pageTurnLandscapeView)
34 : PageTurnView(pageTurnLandscapeView)
35 {
36 }
37
38 PageTurnLandscapeView::PageTurnLandscapeView(Internal::PageTurnLandscapeView& implementation)
39 : PageTurnView(implementation)
40 {
41 }
42
43 PageTurnLandscapeView::PageTurnLandscapeView(Dali::Internal::CustomActor* internal)
44 : PageTurnView(internal)
45 {
46   VerifyCustomActorPointer<Internal::PageTurnLandscapeView>(internal);
47 }
48
49 PageTurnLandscapeView& PageTurnLandscapeView::operator=(const PageTurnLandscapeView& pageTurnLandscapeView)
50 {
51   if(&pageTurnLandscapeView != this)
52   {
53     PageTurnView::operator=(pageTurnLandscapeView);
54   }
55   return *this;
56 }
57
58 PageTurnLandscapeView::~PageTurnLandscapeView()
59 {
60 }
61
62 PageTurnLandscapeView PageTurnLandscapeView::New(PageFactory& pageFactory, const Vector2& viewPageSize)
63 {
64   return Internal::PageTurnLandscapeView::New(pageFactory, viewPageSize);
65 }
66
67 PageTurnLandscapeView PageTurnLandscapeView::DownCast(BaseHandle handle)
68 {
69   return Control::DownCast<PageTurnLandscapeView, Internal::PageTurnLandscapeView>(handle);
70 }
71
72 } // namespace Toolkit
73
74 } // namespace Dali