Revert " modify license, permission and remove ^M char"
[framework/osp/uifw.git] / src / ui / FUi_EflUiEventManager.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                FUi_EflUiEventManager.h
20  * @brief               This is the header file for the _EflUiEventManager class.
21  *
22  * This header file contains the declarations of the _EflUiEventManager class. @n
23  */
24
25 #ifndef _FUI_INTERNAL_EFL_UI_EVENT_MANAGER_H_
26 #define _FUI_INTERNAL_EFL_UI_EVENT_MANAGER_H_
27
28 #include <unique_ptr.h>
29 #include <Ecore.h>
30 #include "FUi_IUiEventManager.h"
31
32 namespace Tizen { namespace Ui
33 {
34
35 /**
36  * This is internal. If used in an application, the application can get rejected during the certification process.
37  * @class       FUi_EflUiEventManager
38  * @brief       This class impliments _EflUiEventManager and
39  * fire the Window Event object of a Ui Control.
40  */
41 class _EflUiEventManager
42         : public _IUiEventManager
43 {
44 public:
45         /**
46          * This is the default class constructor.
47          *
48          */
49         _EflUiEventManager(void);
50
51         /**
52          * This is the default class destructor.
53          *
54          */
55         virtual ~_EflUiEventManager(void);
56
57 private:
58         _EflUiEventManager(const _EflUiEventManager& rhs);
59         _EflUiEventManager& operator =(const _EflUiEventManager& rhs);
60
61         virtual result RegisterKeyEventHandler(const _Control& control);
62         virtual result RegisterTouchEventHandler(const _Control& control);
63         virtual result UnregisterKeyEventHandler(const _Control& control);
64         virtual result UnregisterTouchEventHandler(const _Control& control);
65         virtual result PostEvent(const _UiEvent& event);
66
67         virtual void SetKeyCapture(const _Control& control, _KeyCode keyCode);
68         virtual void ReleaseKeyCapture(const _Control& control, _KeyCode keyCode);
69
70 private:
71         int __notificaitonEventType;
72         std::unique_ptr<Tizen::Base::Collection::LinkedListT<Ecore_Event_Handler*> > __pEventHandlers;
73 }; // _EflUiEventManager
74
75 }} // Tizen::Ui
76
77 #endif //_FUI_INTERNAL_EFL_UI_EVENT_MANAGER_H_