Merge remote-tracking branch 'origin/tizen' into devel/new_mesh
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / public-api / controls / scrollable / scroll-component-impl.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 // CLASS HEADER
19 #include <dali-toolkit/public-api/controls/scrollable/scroll-component-impl.h>
20
21 // EXTERNAL INCLUDES
22 #include <dali/public-api/object/type-registry.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 namespace // unnamed namespace
31 {
32
33 BaseHandle Create()
34 {
35   // empty handle as we cannot create ScrollComponent
36   return BaseHandle();
37 }
38
39 TypeRegistration mType( typeid(Toolkit::ScrollComponent), typeid(Toolkit::Control), Create );
40
41 } // unnamed namespace
42
43 void ScrollComponentImpl::SetScrollConnector( Toolkit::ScrollConnector connector )
44 {
45   if( mScrollConnector != connector )
46   {
47     Toolkit::ScrollConnector oldConnector = mScrollConnector;
48     mScrollConnector = connector;
49
50     // Notify derived classes
51     OnScrollConnectorSet( oldConnector );
52   }
53 }
54
55 Toolkit::ScrollConnector ScrollComponentImpl::GetScrollConnector() const
56 {
57   return mScrollConnector;
58 }
59
60 ScrollComponentImpl::ScrollComponentImpl()
61 : Control( ControlBehaviour( REQUIRES_TOUCH_EVENTS | REQUIRES_STYLE_CHANGE_SIGNALS ) )
62 {
63 }
64
65 ScrollComponentImpl::~ScrollComponentImpl()
66 {
67 }
68
69 void ScrollComponentImpl::OnScrollConnectorSet( Toolkit::ScrollConnector connector )
70 {
71   // Do nothing (override in derived classes)
72 }
73
74 } // namespace Toolkit
75
76 } // namespace Dali