remove (dead) ImageView UI control
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / scrollable / scroll-connector-impl.cpp
1 /*
2  * Copyright (c) 2014 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/internal/controls/scrollable/scroll-connector-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/property-index.h>
23 #include <dali/integration-api/debug.h>
24
25 namespace Dali
26 {
27
28 namespace Toolkit
29 {
30
31 namespace Internal
32 {
33
34 const Property::Index ScrollConnector::SCROLL_POSITION = Dali::PROPERTY_CUSTOM_START_INDEX;
35 const Property::Index ScrollConnector::OVERSHOOT       = Dali::PROPERTY_CUSTOM_START_INDEX + 1;
36
37 ScrollConnector* ScrollConnector::New()
38 {
39   return new ScrollConnector();
40 }
41
42 void ScrollConnector::SetScrollDomain( float min, float max, float length )
43 {
44   mMinLimit = min;
45   mMaxLimit = max;
46   mContentLength = length;
47
48   mDomainChangedSignal.Emit( mMinLimit, mMaxLimit, mContentLength );
49 }
50
51 void ScrollConnector::SetScrollPosition( float position )
52 {
53   mScrollPositionObject.SetProperty( Toolkit::ScrollConnector::SCROLL_POSITION, position );
54   mScrollPositionChangedSignal.Emit( position );
55 }
56
57 ScrollConnector::ScrollConnector()
58 : mMinLimit( 0.0f ),
59   mMaxLimit( 0.0f ),
60   mContentLength( 0.0f )
61 {
62   mScrollPositionObject = Constrainable::New();
63
64   mScrollPositionObject.RegisterProperty( Toolkit::ScrollConnector::SCROLL_POSITION_PROPERTY_NAME, 0.0f );
65   mScrollPositionObject.RegisterProperty( Toolkit::ScrollConnector::OVERSHOOT_PROPERTY_NAME, 0.0f );
66 }
67
68 ScrollConnector::~ScrollConnector()
69 {
70 }
71
72 } // namespace Internal
73
74 } // namespace Toolkit
75
76 } // namespace Dali