Tizen 2.1 base
[framework/osp/uifw.git] / src / ui / inc / FUi_UiEventTypes.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 #ifndef _FUI_INTERNAL_UI_EVENT_TYPES_H_
19 #define _FUI_INTERNAL_UI_EVENT_TYPES_H_
20
21 #include <FOspConfig.h>
22 #include <FBase_HandleT.h>
23
24 namespace Tizen {namespace Ui
25 {
26
27 /**
28  *      @enum   _EventType
29  *
30  *      Defines constants used to identify touch status.
31  *
32  * @since       2.0
33  */
34 enum _UiEventType
35 {
36         _UI_EVENT_TOUCH,         /**< The touch event type */
37         _UI_EVENT_KEY,           /**< The key event type */
38         _UI_EVENT_FOCUS,         /**< The focus event type */
39         _UI_EVENT_NOTIFICAITON   /**< The notification event type */
40 };
41
42 enum _UiEventRouteType
43 {
44         _UI_EVENT_ROUTE_TUNNEL_BUBBLE,
45         _UI_EVENT_ROUTE_DIRECT
46 };
47
48 enum _UiTouchEventDelivery
49 {
50         _UI_TOUCH_EVENT_DELIVERY_NO,
51         _UI_TOUCH_EVENT_DELIVERY_YES,
52         _UI_TOUCH_EVENT_DELIVERY_FORCED_YES,
53 };
54
55 }} // Tizen::Ui
56
57 #endif // _FUI_INTERNAL_UI_EVENT_TYPES_H_