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