4728f8109eeaa3cff4fcfb01104ea8b69b61e9c0
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / controls / scroll-component / scroll-bar-internal.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 // INTERNAL INCLUDES
19 #include <dali-toolkit/internal/controls/scroll-component/scroll-bar-internal.h>
20 #include <dali-toolkit/internal/controls/scroll-component/scroll-bar-internal-impl.h>
21
22 namespace Dali
23 {
24
25 namespace Toolkit
26 {
27
28 ScrollBarInternal::ScrollBarInternal()
29 {
30 }
31
32 ScrollBarInternal::ScrollBarInternal(Internal::ScrollBarInternal& implementation)
33 : ScrollComponent(implementation)
34 {
35 }
36
37 ScrollBarInternal::ScrollBarInternal( Dali::Internal::CustomActor* internal )
38 : ScrollComponent( internal )
39 {
40   VerifyCustomActorPointer<Internal::ScrollBarInternal>(internal);
41 }
42
43 ScrollBarInternal::ScrollBarInternal( const ScrollBarInternal& scrollBar )
44 : ScrollComponent(scrollBar)
45 {
46 }
47
48 ScrollBarInternal& ScrollBarInternal::operator=( const ScrollBarInternal& scrollBar )
49 {
50   if( &scrollBar != this )
51   {
52     Control::operator=( scrollBar );
53   }
54   return *this;
55 }
56
57 ScrollBarInternal ScrollBarInternal::New(Scrollable& container, bool vertical)
58 {
59   return Internal::ScrollBarInternal::New(container, vertical);
60 }
61
62 ScrollBarInternal ScrollBarInternal::DownCast( BaseHandle handle )
63 {
64   return Control::DownCast<ScrollBarInternal, Internal::ScrollBarInternal>(handle);
65 }
66
67 ScrollBarInternal::~ScrollBarInternal()
68 {
69 }
70
71 void ScrollBarInternal::Show()
72 {
73   GetImpl(*this).Show();
74 }
75
76 void ScrollBarInternal::Hide()
77 {
78   GetImpl(*this).Hide();
79 }
80
81 } // namespace Toolkit
82
83 } // namespace Dali