Fix to adjust the position of the partial Frame
[platform/framework/native/uifw.git] / inc / FUiITouchGestureEventListener.h
1 //
2 // Open Service Platform
3 // Copyright (c) 2012-2013 Samsung Electronics Co., Ltd.
4 //
5 // Licensed under the Flora License, Version 1.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://floralicense.org/license/
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        FUiITouchGestureEventListener.h
20  * @brief       This is the header file for the %ITouchGestureEventListener interface.
21  *
22  * This header file contains the declarations of the %ITouchGestureEventListener interface.
23  */
24
25 #ifndef _FUI_ITOUCH_GESTURE_EVENT_LISTENER_H_
26 #define _FUI_ITOUCH_GESTURE_EVENT_LISTENER_H_
27
28 #include <FBaseRtIEventListener.h>
29
30 namespace Tizen { namespace Ui
31 {
32
33 /**
34  * @interface           ITouchGestureEventListener
35  * @brief               This interface is a base interface that all gesture event listeners must implement.
36  *
37  * @since 2.0
38  *
39  * The %ITouchGestureEventListener interface is a base interface that all gesture event listeners must implement.
40  * The event listener can listen when the specific event occurs. The event listener
41  * has several methods, and each method is called when a specific event occurs.
42  *
43  */
44 class _OSP_EXPORT_ ITouchGestureEventListener
45         : virtual public Tizen::Base::Runtime::IEventListener
46 {
47 public:
48         /**
49          * This polymorphic destructor should be overridden if required. This way, the destructors of the derived classes are called when the destructor of this interface is called.
50          *
51          * @since 2.0
52          */
53         virtual ~ITouchGestureEventListener(void) {}
54
55 protected:
56         //
57         // This method is for internal use only. Using this method can cause behavioral, security-related,
58         // and consistency-related issues in the application.
59         //
60         // This method is reserved and may change its name at any time without
61         // prior notice.
62         //
63         virtual void ITouchGestureEventListener_Reserved1(void) {}
64
65         //
66         // This method is for internal use only. Using this method can cause behavioral, security-related,
67         // and consistency-related issues in the application.
68         //
69         // This method is reserved and may change its name at any time without
70         // prior notice.
71         //
72         virtual void ITouchGestureEventListener_Reserved2(void) {}
73
74         //
75         // This method is for internal use only. Using this method can cause behavioral, security-related,
76         // and consistency-related issues in the application.
77         //
78         // This method is reserved and may change its name at any time without
79         // prior notice.
80         //
81         virtual void ITouchGestureEventListener_Reserved3(void) {}
82 }; // ITouchGestureEventListener
83
84 }} // Tizen::Ui
85
86 #endif // _FUI_ITOUCH_GESTURE_EVENT_LISTENER_H_