Formatting API
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / scrollable / scrollable.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 #include <dali-toolkit/internal/controls/scrollable/scrollable-impl.h>
19 #include <dali-toolkit/public-api/controls/scrollable/scrollable.h>
20
21 using namespace Dali;
22
23 namespace Dali
24 {
25 namespace Toolkit
26 {
27 Scrollable::Scrollable()
28 {
29 }
30
31 Scrollable::Scrollable(Internal::Scrollable& implementation)
32 : Control(implementation)
33 {
34 }
35
36 Scrollable::Scrollable(Dali::Internal::CustomActor* internal)
37 : Control(internal)
38 {
39   VerifyCustomActorPointer<Internal::Scrollable>(internal);
40 }
41
42 Scrollable::Scrollable(const Scrollable& handle) = default;
43
44 Scrollable::Scrollable(Scrollable&& rhs) = default;
45
46 Scrollable& Scrollable::operator=(const Scrollable& handle) = default;
47
48 Scrollable& Scrollable::operator=(Scrollable&& rhs) = default;
49
50 Scrollable::~Scrollable()
51 {
52 }
53
54 Scrollable Scrollable::DownCast(BaseHandle handle)
55 {
56   return Control::DownCast<Scrollable, Internal::Scrollable>(handle);
57 }
58
59 Scrollable::ScrollStartedSignalType& Scrollable::ScrollStartedSignal()
60 {
61   return GetImpl(*this).ScrollStartedSignal();
62 }
63
64 Scrollable::ScrollUpdatedSignalType& Scrollable::ScrollUpdatedSignal()
65 {
66   return GetImpl(*this).ScrollUpdatedSignal();
67 }
68
69 Scrollable::ScrollCompletedSignalType& Scrollable::ScrollCompletedSignal()
70 {
71   return GetImpl(*this).ScrollCompletedSignal();
72 }
73
74 bool Scrollable::IsOvershootEnabled() const
75 {
76   return GetImpl(*this).IsOvershootEnabled();
77 }
78
79 void Scrollable::SetOvershootEnabled(bool enable)
80 {
81   GetImpl(*this).SetOvershootEnabled(enable);
82 }
83
84 void Scrollable::SetOvershootEffectColor(const Vector4& color)
85 {
86   GetImpl(*this).SetOvershootEffectColor(color);
87 }
88
89 Vector4 Scrollable::GetOvershootEffectColor() const
90 {
91   return GetImpl(*this).GetOvershootEffectColor();
92 }
93
94 void Scrollable::SetOvershootAnimationSpeed(float pixelsPerSecond)
95 {
96   GetImpl(*this).SetOvershootAnimationSpeed(pixelsPerSecond);
97 }
98
99 float Scrollable::GetOvershootAnimationSpeed() const
100 {
101   return GetImpl(*this).GetOvershootAnimationSpeed();
102 }
103
104 } // namespace Toolkit
105
106 } // namespace Dali