Tizen 2.1 base
[framework/osp/uifw.git] / src / ui / FUiTouchFlickGestureDetector.cpp
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  * @file                        FUiTouchFlickGestureDetector.cpp
19  * @brief               This is the implementation file for %TouchFlickGestureDetector class
20  * @version     2.0
21  *
22  * This file contains the implementation of %TouchFlickGestureDetector class.
23  *
24  */
25
26 #include <FUiITouchFlickGestureEventListener.h>
27 #include <FBaseSysLog.h>
28 #include "FUi_TouchFlickGestureDetectorImpl.h"
29
30 namespace Tizen { namespace Ui
31 {
32 TouchFlickGestureDetector::TouchFlickGestureDetector(void)
33 {
34 }
35
36 TouchFlickGestureDetector::~TouchFlickGestureDetector(void)
37 {
38 }
39
40 result
41 TouchFlickGestureDetector::Construct(void)
42 {
43         SysAssertf(__pTouchGestureDetectorImpl == null, "Already constructed. Calling Construct() twice or more on a same instance is not allowed for this class.");
44
45         _TouchGestureDetectorImpl* pImpl =  _TouchFlickGestureDetectorImpl::CreateInstanceN(this);
46         result r = GetLastResult();
47         SysTryReturn(NID_UI, pImpl, r, r, "[%s] Propagating.", GetErrorMessage(r));
48
49         __pTouchGestureDetectorImpl = pImpl;
50
51         return E_SUCCESS;
52 }
53
54 result
55 TouchFlickGestureDetector::AddFlickGestureEventListener(ITouchFlickGestureEventListener& listener)
56 {
57         SysAssertf(__pTouchGestureDetectorImpl != null, "Not yet constructed. Construct() should be called before used.");
58
59         result r = __pTouchGestureDetectorImpl->AddGestureEventListener(listener);
60         SysTryReturn(NID_UI, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
61
62         return E_SUCCESS;
63 }
64
65 result
66 TouchFlickGestureDetector::RemoveFlickGestureEventListener(ITouchFlickGestureEventListener& listener)
67 {
68         SysAssertf(__pTouchGestureDetectorImpl != null, "Not yet constructed. Construct() should be called before used.");
69
70         result r = __pTouchGestureDetectorImpl->RemoveGestureEventListener(listener);
71         SysTryReturn(NID_UI, r == E_SUCCESS, r, r, "[%s] Propagating.", GetErrorMessage(r));
72
73         return E_SUCCESS;
74 }
75
76 result
77 TouchFlickGestureDetector::GetDistance(int& xDistance, int& yDistance) const
78 {
79         const _TouchFlickGestureDetectorImpl* pTouchFlickGestureDetectorImpl = _TouchFlickGestureDetectorImpl::GetInstance(*this);
80         SysAssertf(pTouchFlickGestureDetectorImpl != null, "Not yet constructed. Construct() should be called before used.");
81
82         return pTouchFlickGestureDetectorImpl->GetDistance(xDistance, yDistance);
83 }
84
85 int
86 TouchFlickGestureDetector::GetDuration(void) const
87 {
88         const _TouchFlickGestureDetectorImpl* pTouchFlickGestureDetectorImpl = _TouchFlickGestureDetectorImpl::GetInstance(*this);
89         SysAssertf(pTouchFlickGestureDetectorImpl != null, "Not yet constructed. Construct() should be called before used.");
90
91         return pTouchFlickGestureDetectorImpl->GetDuration();
92 }
93
94 FlickDirection
95 TouchFlickGestureDetector::GetDirection(void) const
96 {
97         const _TouchFlickGestureDetectorImpl* pTouchFlickGestureDetectorImpl = _TouchFlickGestureDetectorImpl::GetInstance(*this);
98         SysAssertf(pTouchFlickGestureDetectorImpl != null, "Not yet constructed. Construct() should be called before used.");
99
100         return pTouchFlickGestureDetectorImpl->GetDirection();
101 }
102
103 }} //Tizen::Ui