a3ee3f01e2af9884a4718cf053d1d749b0bd5801
[platform/core/uifw/dali-toolkit.git] / capi / dali-toolkit / public-api / controls / scrollable / scroll-component.h
1 #ifndef __DALI_TOOLKIT_SCROLL_COMPONENT_H__
2 #define __DALI_TOOLKIT_SCROLL_COMPONENT_H__
3
4 /*
5  * Copyright (c) 2014 Samsung Electronics Co., Ltd.
6  *
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  * http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  *
19  */
20
21 // INTERNAL INCLUDES
22 #include <dali/dali.h>
23 #include <dali-toolkit/public-api/controls/control.h>
24
25 namespace Dali DALI_IMPORT_API
26 {
27
28 namespace Toolkit
29 {
30
31 class ScrollComponentImpl;
32 class ScrollConnector;
33
34 /**
35  * Base class for scroll component handles.
36  * Scroll-components such as scroll bars, indicators etc. are connected to scrollable containers via ScrollConnector.
37  */
38 class ScrollComponent : public Control
39 {
40
41 public:
42   /**
43    * Create an uninitialized ScrollComponent; this can be initialized with ScrollComponent::New()
44    * Calling member functions with an uninitialized Dali::Object is not allowed.
45    */
46   ScrollComponent();
47
48   /**
49    * Copy constructor.
50    */
51   ScrollComponent( const ScrollComponent& scrollComponent );
52
53   /**
54    * Assignment operator.
55    */
56   ScrollComponent& operator=( const ScrollComponent& scrollComponent );
57
58   /**
59    * Virtual destructor.
60    * Dali::Object derived classes typically do not contain member data.
61    */
62   virtual ~ScrollComponent();
63
64   /**
65    * Downcast an Object handle to ScrollComponent. If handle points to a ScrollComponent the
66    * downcast produces valid handle. If not the returned handle is left uninitialized.
67    * @param[in] handle Handle to an object
68    * @return handle to a ScrollComponent or an uninitialized handle
69    */
70   static ScrollComponent DownCast( BaseHandle handle );
71
72   /**
73    * @brief Sets the scroll connector.
74    *
75    * @param[in] connector The scroll-connector used to connect with scrollable container.
76    */
77   void SetScrollConnector( ScrollConnector connector );
78
79   /**
80    * @brief Retrieve the scroll connector.
81    *
82    * @return The scroll-connector used to connect with a scrollable container.
83    */
84   ScrollConnector GetScrollConnector() const;
85
86 public: // Not intended for application developers
87
88   /**
89    * Creates a handle using the implementation.
90    * @param[in]  implementation The Control implementation.
91    */
92   ScrollComponent( ScrollComponentImpl& implementation );
93
94   /**
95    * Allows the creation of this Control from an Internal::CustomActor pointer.
96    * @param[in]  internal  A pointer to the internal CustomActor.
97    */
98   ScrollComponent( Dali::Internal::CustomActor* internal );
99 };
100
101 } // namespace Toolkit
102
103 } // namespace Dali
104
105 #endif // __DALI_TOOLKIT_SCROLL_COMPONENT_H__