c42c39835bfcd94973e274ddc78dfa4ea8902369
[platform/core/uifw/inputdelegator.git] / inc / w-input-selector.h
1 /*
2  * Copyright (c) 2016 Samsung Electronics Co., Ltd All Rights Reserved
3  *
4  * Licensed under the Apache License, Version 2.0 (the License);
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an AS IS BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 #ifndef __W_INPUT_SELECTOR_H_
18 #define __W_INPUT_SELECTOR_H_
19
20 #if !defined(PACKAGE)
21 #define PACKAGE "org.tizen.inputdelegator"
22 #endif
23
24 #ifdef _
25 #undef _
26 #endif
27
28 #define _(str) gettext(str)
29
30 #define APP_EDJ_FILE "edje/w-input-selector.edj"
31 #define STT_EDJ_FILE "edje/w-input-stt.edj"
32 #define LOCALEDIR       "/usr/apps/org.tizen.inputdelegator/res/locale"
33 #define RESOURCEDIR "/usr/apps/org.tizen.inputdelegator/res/"
34
35
36 #include <app_control.h>
37 #include <Elementary.h>
38 #include <Evas.h>
39 #include <efl_extension.h>
40
41 enum {
42         APP_TYPE_SELECT_MODE = 1,
43         APP_TYPE_STT,
44         APP_TYPE_EMOTICON,
45         APP_TYPE_REPLY,
46         APP_TYPE_HANDWRITING,
47         APP_TYPE_KEYBOARD,
48 };
49
50 enum {
51         REPLY_APP_NORMAL = 0,
52         REPLY_APP_CONTROL,
53 };
54
55 typedef enum {
56    TIZEN_PROFILE_UNKNOWN = 0,
57    TIZEN_PROFILE_MOBILE = 0x1,
58    TIZEN_PROFILE_WEARABLE = 0x2,
59    TIZEN_PROFILE_TV = 0x4,
60    TIZEN_PROFILE_IVI = 0x8,
61    TIZEN_PROFILE_COMMON = 0x10,
62 } tizen_profile_t;
63 extern tizen_profile_t _get_tizen_profile();
64 #define _TV (_get_tizen_profile() == TIZEN_PROFILE_TV)
65 #define _MOBILE (_get_tizen_profile() == TIZEN_PROFILE_MOBILE)
66 #define _WEARABLE (_get_tizen_profile() == TIZEN_PROFILE_WEARABLE)
67
68 typedef struct appdata{
69         Evas_Object* win_main;
70         Evas_Object* layout_main;
71         Evas_Object* conform;
72         Evas_Object* naviframe;
73         Evas_Object* genlist;
74 #ifdef _WEARABLE
75         Eext_Circle_Surface *circle_surface;
76 #endif
77
78         app_control_h source_app_control;
79         int app_type;
80         int reply_type;
81         char* res_path;
82         char* shared_res_path;
83 } App_Data;
84
85
86 typedef enum
87 {
88         GESTURE_MODE_DEFAULT,
89         GESTURE_MODE_START,
90         GESTURE_MODE_FREEZE,
91         GESTURE_MODE_END,
92 } Gesture_Mode_Type;
93
94 struct _InputKeyboardData
95 {
96         char *guide_text;
97         char *default_text;
98 };
99 typedef struct _InputKeyboardData InputKeyboardData;
100
101 struct _InputTypeData
102 {
103         char **input_type_array;
104         int input_type_array_len;
105 };
106 typedef struct _InputTypeData InputTypeData;
107
108 void _app_terminate(void* user_data);
109 void reply_to_sender_by_callback_for_back();
110 void reply_to_sender_by_callback(const char *value, const char *type);
111 char* get_resource_path();
112 char* get_shared_resource_path();
113 void show_gl_focus(Eina_Bool bVisible);
114 void show_popup_toast(const char *text, bool check_img);
115 void _back_to_genlist_for_selector();
116 void set_source_caller_app_id(app_control_h app_control);
117
118 #endif