modified doxygen comment
[framework/osp/uifw.git] / inc / FUiCtrlIScrollEventListenerF.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Apache License, Version 2.0 (the License);
6 // you may not use this file except in compliance with the License.
7 // You may obtain a copy of the License at
8 //
9 //     http://www.apache.org/licenses/LICENSE-2.0/
10 //
11 // Unless required by applicable law or agreed to in writing, software
12 // distributed under the License is distributed on an "AS IS" BASIS,
13 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14 // See the License for the specific language governing permissions and
15 // limitations under the License.
16 //
17
18 /**
19  * @file                FUiCtrlIScrollEventListenerF.h
20  * @brief       This is the header file for the %IScrollEventListenerF interface.
21  *
22  * This header file contains the declarations of the %IScrollEventListenerF interface. @n
23  * If a change event is generated, a method of this interface is called. @n
24  * The applications that perform tasks related to the change events, call the methods of this interface.
25  *
26  */
27 #ifndef _FUI_CTRL_ISCROLL_EVENT_LISTENER_F_H_
28 #define _FUI_CTRL_ISCROLL_EVENT_LISTENER_F_H_
29
30 #include <FBaseRtIEventListener.h>
31 #include <FUiCtrlScrollEventTypes.h>
32
33 namespace Tizen { namespace Ui
34 {
35 class Control;
36 }}      // Tizen::Ui
37
38 namespace Tizen {namespace Ui { namespace Controls
39 {
40
41 /**
42  * @interface   IScrollEventListenerF
43  * @brief       This interface implements a listener for scroll events.
44  *
45  * @since       2.1
46  *
47  * The %IScrollEventListenerF interface is the listener interface for receiving scroll events.
48  * The class that processes a scroll event implements this interface, and the instance created with that class is registered with
49  * a UI control, using the control(GroupedListView, GroupedTableView, IconListView,  ListView, ScrollPanel, SectionTableView, TableView)'s AddScrollEventListener() method.
50  * When the scroll event occurs, the OnScrollEndReached() method of that instance is invoked.
51  *
52  * For more information on the class features, see <a href="../org.tizen.native.appprogramming/html/guide/ui/implementing_panels.htm">Panels</a>
53  * and <a href="../org.tizen.native.appprogramming/html/guide/ui/implementing_listviews.htm">ListViews</a>.
54  */
55 class _OSP_EXPORT_ IScrollEventListenerF
56         : public Tizen::Base::Runtime::IEventListener
57 {
58 // Operation
59 public:
60         /**
61          * This polymorphic destructor should be overridden if required.@n
62          * This way, the destructors of the derived classes are called when the destructor of this interface is called.
63          *
64          * @since 2.1
65          *
66          */
67         virtual ~IScrollEventListenerF(void) {}
68
69         /**
70          * Called when the scroll reaches the top, bottom, left, or right end.
71          *
72          * @since           2.1
73          *
74          * @param[in]           source        The source of the event
75          * @param[in]           type          The type of scroll end event
76          */
77         virtual void OnScrollEndReached(Tizen::Ui::Control& source, Tizen::Ui::Controls::ScrollEndEvent type) = 0;
78
79         /**
80          * Called continuously when the control is being scrolled.
81          *
82          * @since 2.1
83          *
84          *@param[in]               source        The control being scrolled
85          *@param[in]               scrollPosition     The scrolled position
86          */
87         virtual void OnScrollPositionChanged(Tizen::Ui::Control& source, float scrollPosition) = 0;
88
89         /**
90          * Called when the control's scroll movement has come to a stop.
91          *
92          * @since 2.1
93          *
94          * @param[in]               source        The control being scrolled
95          */
96         virtual void OnScrollStopped(Tizen::Ui::Control& source) = 0;
97
98 protected:
99         //
100         // This method is for internal use only.
101         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
102         //
103         // This method is reserved and may change its name at any time without prior notice.
104         //
105         virtual void ScrollEventListener_Reserved1(void) {}
106
107         //
108         // This method is for internal use only.
109         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
110         //
111         // This method is reserved and may change its name at any time without prior notice.
112         //
113         virtual void ScrollEventListener_Reserved2(void) {}
114
115         //
116         // This method is for internal use only.
117         // Using this method can cause behavioral, security-related, and consistency-related issues in the application.
118         //
119         // This method is reserved and may change its name at any time without prior notice.
120         //
121         virtual void ScrollEventListener_Reserved3(void) {}
122
123 }; // IScrollEventListenerF
124
125 }}}     // Tizen::Ui::Controls
126
127 #endif // _FUI_CTRL_ISCROLL_EVENT_LISTENER_F_H_