Remove obsolete and non functional SizeChanged signal from actor
[platform/core/uifw/dali-toolkit.git] / 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-toolkit/public-api/controls/control.h>
23
24 namespace Dali
25 {
26
27 namespace Toolkit
28 {
29
30 class ScrollComponentImpl;
31 class ScrollConnector;
32
33 /**
34  * Base class for scroll component handles.
35  * Scroll-components such as scroll bars, indicators etc. are connected to scrollable containers via ScrollConnector.
36  */
37 class DALI_IMPORT_API ScrollComponent : public Control
38 {
39
40 public:
41   /**
42    * Create an uninitialized ScrollComponent; this can be initialized with ScrollComponent::New()
43    * Calling member functions with an uninitialized Dali::Object is not allowed.
44    */
45   ScrollComponent();
46
47   /**
48    * Copy constructor.
49    */
50   ScrollComponent( const ScrollComponent& scrollComponent );
51
52   /**
53    * Assignment operator.
54    */
55   ScrollComponent& operator=( const ScrollComponent& scrollComponent );
56
57   /**
58    * @brief Destructor
59    *
60    * This is non-virtual since derived Handle types must not contain data or virtual methods.
61    */
62   ~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   DALI_INTERNAL 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   explicit DALI_INTERNAL ScrollComponent( Dali::Internal::CustomActor* internal );
99 };
100
101 } // namespace Toolkit
102
103 } // namespace Dali
104
105 #endif // __DALI_TOOLKIT_SCROLL_COMPONENT_H__