d72a097ff86a83a6705a72037e0684f201d37063
[platform/core/uifw/inputdelegator.git] / src / w-input-selector.cpp
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 #include "Debug.h"
18
19 #include <app.h>
20 #include <dlog.h>
21 #include <Eina.h>
22 #include <string>
23 #include <vconf.h>
24 #include <vconf-keys.h>
25 #include <stdint.h>
26 #include <system_info.h>
27
28 #include "w-input-selector.h"
29 #include "w-input-template.h"
30 #include "w-input-keyboard.h"
31 #include "w-input-stt-ise.h"
32 #include "w-input-emoticon.h"
33 #include "w-input-smartreply.h"
34
35 #include <stt.h>
36
37
38 using namespace std;
39
40 App_Data* app_data = NULL;
41
42 InputKeyboardData g_input_keyboard_data;
43 InputTypeData g_input_type_data;
44
45 static Elm_Object_Item *it_empty;
46 static Elm_Object_Item *it_title;
47
48 static unsigned int g_smartreply_item_size = 0;         /* Current Smartreply item size */
49 static unsigned int g_template_item_size = 0;           /* Current Template item size */
50
51 Evas_Coord last_step; // 0 ~ 9 for gesture, 10~11 for rotary
52
53 tizen_profile_t _get_tizen_profile()
54 {
55         static tizen_profile_t profile = TIZEN_PROFILE_UNKNOWN;
56         if (__builtin_expect(profile != TIZEN_PROFILE_UNKNOWN, 1))
57                 return profile;
58
59         char *profileName;
60         system_info_get_platform_string("http://tizen.org/feature/profile", &profileName);
61         switch (*profileName)
62         {
63                 case 'm':
64                 case 'M':
65                         profile = TIZEN_PROFILE_MOBILE;
66                         break;
67                 case 'w':
68                 case 'W':
69                         profile = TIZEN_PROFILE_WEARABLE;
70                         break;
71                 case 't':
72                 case 'T':
73                         profile = TIZEN_PROFILE_TV;
74                         break;
75                 case 'i':
76                 case 'I':
77                         profile = TIZEN_PROFILE_IVI;
78                         break;
79                 default: // common or unknown ==> ALL ARE COMMON.
80                         profile = TIZEN_PROFILE_COMMON;
81         }
82         free(profileName);
83
84         return profile;
85 }
86
87 void _init_app_data(App_Data* app_data);
88 static void _app_language_changed(app_event_info_h event_info, void *user_data);
89
90 Evas_Object* _create_genlist(Evas_Object* parent);
91 void _create_genlist_items(void* user_data);
92 void _create_header_items(void *user_data);
93 void _update_genlist_items(void *user_data);
94 unsigned int _update_smartreply_items(void *user_data);
95 unsigned int _update_template_items(void *user_data);
96 static void _popup_close_cb(void *data, Evas_Object *obj, void *event_info);
97 static void _popup_back_cb(void *data, Evas_Object *obj, void *event_info);
98 static void input_type_deinit(void);
99
100 bool __compare_string(const char * src, const char * dst);
101
102 void _init_app_data(App_Data* app_data)
103 {
104         app_data->win_main = NULL;
105         app_data->layout_main = NULL;
106         app_data->conform = NULL;
107         app_data->naviframe = NULL;
108         app_data->genlist = NULL;
109
110         app_data->res_path = NULL;
111 }
112
113 Evas_Object* load_edj(Evas_Object* parent, const char* file, const char* group)
114 {
115         Evas_Object* window;
116         Evas_Object* content;
117         int ret;
118
119         window = elm_layout_add(parent);
120         if (window) {
121                 ret = elm_layout_file_set(window, file, group);
122                 if (!ret) {
123                         evas_object_del(window);
124                         return NULL;
125                 }
126
127                 content = elm_layout_add(parent);
128                 elm_layout_theme_set(content, "layout", "application", "default");
129                 elm_object_part_content_set(window, "elm.swallow.content", content);
130
131                 evas_object_size_hint_weight_set(window, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
132         }
133         return window;
134 }
135
136 void init_customizing_theme(void)
137 {
138         string stt_edj_path = get_resource_path();
139         string app_edj_path = get_resource_path();
140
141         if (_WEARABLE) {
142                 stt_edj_path = stt_edj_path + STT_EDJ_FILE_WEARABLE;
143                 app_edj_path = app_edj_path + APP_EDJ_FILE_WEARABLE;
144         } else if (_TV) {
145                 stt_edj_path = stt_edj_path + STT_EDJ_FILE_TV;
146                 app_edj_path = app_edj_path + APP_EDJ_FILE_TV;
147         } else {
148                 stt_edj_path = stt_edj_path + STT_EDJ_FILE_MOBILE;
149                 app_edj_path = app_edj_path + APP_EDJ_FILE_MOBILE;
150         }
151
152         elm_theme_extension_add(NULL, stt_edj_path.c_str());
153         elm_theme_extension_add(NULL, app_edj_path.c_str());
154 }
155
156
157 static Eina_Bool back_cb(void *data, Elm_Object_Item *it)
158 {
159         reply_to_sender_by_callback_for_back();
160         ui_app_exit();
161         return EINA_FALSE;
162 }
163
164 static void _stt_clicked_cb(void *data, Evas_Object * obj, void *event_info)
165 {
166         App_Data* ad = (App_Data*)data;
167
168         PRINTFUNC(DLOG_DEBUG, "");
169
170         if (!ad)
171                 return;
172
173         ise_show_stt_popup(ad);
174 }
175
176 static void _input_smartreply_notify_cb(void *user_data)
177 {
178         ecore_main_loop_iterate();
179         _update_genlist_items((void *)app_data);
180 }
181
182 static void _input_template_notify_cb(void *user_data)
183 {
184         _update_genlist_items((void *)app_data);
185 }
186
187 static void _emoticon_clicked_cb(void *data, Evas_Object * obj, void *event_info)
188 {
189         App_Data* ad = (App_Data*)data;
190
191         PRINTFUNC(DLOG_DEBUG, "");
192
193         if (!ad)
194                 return;
195
196         ise_show_emoticon_list(ad);
197 }
198
199 static void _keyboard_clicked_cb(void *data, Evas_Object * obj, void *event_info)
200 {
201         App_Data* ad = (App_Data *)data;
202
203         PRINTFUNC(DLOG_DEBUG, "");
204
205         if (!ad)
206                 return;
207
208         input_keyboard_launch(ad->win_main, data);
209 }
210
211 static void __ise_smartreply_gl_sel(void *data, Evas_Object *obj, void *event_info)
212 {
213         Elm_Object_Item *item = (Elm_Object_Item *) event_info;
214
215         if (item) {
216                 elm_genlist_item_selected_set(item, EINA_FALSE);
217
218                 int index = (intptr_t) elm_object_item_data_get(item);
219
220                 int type;
221                 char *reply = input_smartreply_get_nth_item(index, &type);
222                 if (reply) {
223                         input_smartreply_send_feedback(reply);
224                         reply_to_sender_by_callback(reply, "smartreply", NULL);
225                         free(reply);
226                         elm_exit();
227                 }
228         }
229 }
230
231 static void __ise_template_gl_sel(void *data, Evas_Object *obj, void *event_info)
232 {
233         Elm_Object_Item *item = (Elm_Object_Item *) event_info;
234         int index = 0;
235
236         if (item) {
237                 elm_genlist_item_selected_set(item, EINA_FALSE);
238
239                 index = (uintptr_t) elm_object_item_data_get(item);
240                 const std::vector<TemplateData>  template_list = input_template_get_list();
241
242                 if (index < (int)template_list.size()) {
243                         reply_to_sender_by_callback(gettext(template_list[index].text.c_str()), "template", NULL);
244                         ui_app_exit();
245                 }
246         }
247 }
248
249 static char * __ise_template_gl_text_get(void *data, Evas_Object *obj, const char *part)
250 {
251         if (!strcmp(part, "elm.text")) {
252                 unsigned int index = (uintptr_t)data;
253                 const std::vector<TemplateData>  template_list = input_template_get_list();
254
255                 if (index < template_list.size()) {
256                         if (template_list[index].use_gettext) {
257                                 return strdup(gettext(template_list[index].text.c_str()));
258                         } else {
259                                 Eina_Strbuf *buf = NULL;
260                                 const char *str = NULL;
261                                 char *markup = NULL;
262
263                                 buf = eina_strbuf_new();
264                                 if (buf) {
265                                         eina_strbuf_append(buf, template_list[index].text.c_str());
266                                         eina_strbuf_replace_all(buf, "\n", "");
267                                         eina_strbuf_replace_all(buf, "\r", "");
268
269                                         str = eina_strbuf_string_get(buf);
270
271                                         if (str) {
272                                                 markup = elm_entry_utf8_to_markup(str);
273                                         }
274                                         eina_strbuf_free(buf);
275                                 }
276                                 return markup;
277                         }
278                 }
279         }
280         return NULL;
281 }
282
283 static Evas_Object * __ise_gl_2button_content_get(void *data, Evas_Object *obj, const char *part)
284 {
285         char *first_input_type = *(g_input_type_data.input_type_array + 0);
286         char *second_input_type = *(g_input_type_data.input_type_array + 1);
287
288         if (!strcmp(part, "elm.icon.1") ||  (!strcmp(part, "elm.icon.2"))) {
289                 Evas_Object* btn = elm_button_add(obj);
290                 evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
291                 evas_object_size_hint_align_set(btn, EVAS_HINT_FILL, EVAS_HINT_FILL);
292
293                 Evas_Object* ic = elm_image_add(btn);
294                 elm_image_resizable_set(ic, EINA_TRUE, EINA_TRUE);
295                 string path = get_resource_path();
296                 if (_WEARABLE)
297                         path = path + "wearable/";
298                 else if (_TV)
299                         path = path + "tv/";
300                 else
301                         path = path + "mobile/";
302
303                 if (!strcmp(part, "elm.icon.1")) {
304                         string path_ic;
305                         if (!strcmp(first_input_type, "input_voice")) {
306                                 elm_object_style_set(btn, "ime_button_stt");
307                                 path_ic = path + "images/w_mode_stt_ic.png";
308                         } else if (!strcmp(first_input_type, "input_emoticon")) {
309                                 elm_object_style_set(btn, "ime_button_emoticon");
310                                 path_ic = path + "images/Delta_w_mode_emoticon_ic.png";
311                         } else if (!strcmp(first_input_type, "input_keyboard")) {
312                                 elm_object_style_set(btn, "ime_button_keyboard");
313                                 path_ic = path + "images/w_mode_keyboard_ic.png";
314                                 evas_object_propagate_events_set(btn, EINA_FALSE);
315                         }
316                         elm_image_file_set(ic, path_ic.c_str(), NULL);
317                         elm_object_content_set(btn, ic);
318                         evas_object_layer_set(btn, 32000);
319                 } else if (!strcmp(part, "elm.icon.2")){
320                         string path_ic;
321                         if (!strcmp(second_input_type, "input_voice")) {
322                                 elm_object_style_set(btn, "ime_button_stt");
323                                 path_ic = path + "images/w_mode_stt_ic.png";
324                         } else if (!strcmp(second_input_type, "input_emoticon")) {
325                                 elm_object_style_set(btn, "ime_button_emoticon");
326                                 path_ic = path + "images/Delta_w_mode_emoticon_ic.png";
327                         } else if (!strcmp(second_input_type, "input_keyboard")) {
328                                 elm_object_style_set(btn, "ime_button_keyboard");
329                                 path_ic = path + "images/w_mode_keyboard_ic.png";
330                                 evas_object_propagate_events_set(btn, EINA_FALSE);
331                         }
332                         elm_image_file_set(ic, path_ic.c_str(), NULL);
333                         elm_object_content_set(btn, ic);
334                         evas_object_layer_set(btn, 32000);
335                 }
336                 return btn;
337         } else if (!strcmp(part, "elm.icon.1.touch_area") ||  (!strcmp(part, "elm.icon.2.touch_area"))) {
338                 Evas_Object* btn = elm_button_add(obj);
339                 elm_object_style_set(btn, "touch_area");
340                 evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
341                 evas_object_size_hint_align_set(btn, EVAS_HINT_FILL, EVAS_HINT_FILL);
342                 string path = get_resource_path();
343                 if (!strcmp(part, "elm.icon.1.touch_area")) {
344                         evas_object_layer_set(btn, 32000);
345                         if (!strcmp(first_input_type, "input_voice")) {
346                                 evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data);
347                         } else if (!strcmp(first_input_type, "input_emoticon")) {
348                                 evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data);
349                         } else if (!strcmp(first_input_type, "input_keyboard")) {
350                                 evas_object_propagate_events_set(btn, EINA_FALSE);
351                                 evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data);
352                         }
353                 } else if (!strcmp(part, "elm.icon.2.touch_area")){
354                         evas_object_layer_set(btn, 32000);
355                         if (!strcmp(second_input_type, "input_voice")) {
356                                 evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data);
357                         } else if (!strcmp(second_input_type, "input_emoticon")) {
358                                 evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data);
359                         } else if (!strcmp(second_input_type, "input_keyboard")) {
360                                 evas_object_propagate_events_set(btn, EINA_FALSE);
361                                 evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data);
362                         }
363                 }
364                 return btn;
365         } else if (!strcmp(part, "base")) {
366                 Evas_Object* btn = elm_button_add(obj);
367                 elm_object_style_set(btn, "ime_transparent");
368                 return btn;
369         }
370         return NULL;
371 }
372
373 static Evas_Object * __ise_gl_3button_content_get(void *data, Evas_Object *obj, const char *part)
374 {
375         if (!strcmp(part, "elm.icon.1") ||  (!strcmp(part, "elm.icon.2")) ||  (!strcmp(part, "elm.icon.3"))) {
376                 Evas_Object* btn = elm_button_add(obj);
377                 evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
378                 evas_object_size_hint_align_set(btn, EVAS_HINT_FILL, EVAS_HINT_FILL);
379                 Evas_Object* ic = elm_image_add(btn);
380                 elm_image_resizable_set(ic, EINA_TRUE, EINA_TRUE);
381                 string path = get_resource_path();
382                 if (_WEARABLE)
383                         path = path + "wearable/";
384                 else if (_TV)
385                         path = path + "tv/";
386                 else
387                         path = path + "mobile/";
388
389                 if (!strcmp(part, "elm.icon.1")) {
390                         elm_object_style_set(btn, "ime_button_stt");
391                         string path_ic = path + "images/w_mode_stt_ic.png";
392                         elm_image_file_set(ic, path_ic.c_str(), NULL);
393                         elm_object_content_set(btn, ic);
394                         evas_object_layer_set(btn, 32000);
395
396                 } else if (!strcmp(part, "elm.icon.2")){
397                         elm_object_style_set(btn, "ime_button_emoticon");
398                         string path_ic = path + "images/Delta_w_mode_emoticon_ic.png";
399                         elm_image_file_set(ic, path_ic.c_str(), NULL);
400                         elm_object_content_set(btn, ic);
401                         evas_object_layer_set(btn, 32000);
402
403                 } else if (!strcmp(part, "elm.icon.3")){
404                         elm_object_style_set(btn, "ime_button_keyboard");
405                         string path_ic = path + "images/w_mode_keyboard_ic.png";
406                         elm_image_file_set(ic, path_ic.c_str(), NULL);
407                         elm_object_content_set(btn, ic);
408                         evas_object_layer_set(btn, 32000);
409                         evas_object_propagate_events_set(btn, EINA_FALSE);
410                 }
411
412                 return btn;
413         } else if (!strcmp(part, "elm.icon.1.touch_area") ||  (!strcmp(part, "elm.icon.2.touch_area")) ||  (!strcmp(part, "elm.icon.3.touch_area"))) {
414                 Evas_Object* btn = elm_button_add(obj);
415                 elm_object_style_set(btn, "touch_area");
416                 evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
417                 evas_object_size_hint_align_set(btn, EVAS_HINT_FILL, EVAS_HINT_FILL);
418                 string path = get_resource_path();
419                 if (!strcmp(part, "elm.icon.1.touch_area")) {
420                         evas_object_layer_set(btn, 32000);
421                         evas_object_smart_callback_add(btn, "clicked", _stt_clicked_cb, app_data);
422
423                 } else if (!strcmp(part, "elm.icon.2.touch_area")){
424                         evas_object_layer_set(btn, 32000);
425                         evas_object_smart_callback_add(btn, "clicked", _emoticon_clicked_cb, app_data);
426                 } else if (!strcmp(part, "elm.icon.3.touch_area")) {
427                         evas_object_layer_set(btn, 32000);
428                         evas_object_propagate_events_set(btn, EINA_FALSE);
429                         evas_object_smart_callback_add(btn, "clicked", _keyboard_clicked_cb, app_data);
430                 }
431
432                 return btn;
433         } else if (!strcmp(part, "base")) {
434                 Evas_Object* btn = elm_button_add(obj);
435                 elm_object_style_set(btn, "ime_transparent");
436                 return btn;
437         }
438         return NULL;
439 }
440
441 static char * __ise_smartreply_gl_text_get(void *data, Evas_Object *obj, const char *part)
442 {
443         if(!strcmp(part, "elm.text")) {
444                 int index;
445                 char *reply = NULL;
446                 index = (intptr_t)data;
447                 if (index < 0)
448                         return NULL;
449
450                 reply = input_smartreply_get_nth_item(index, NULL);
451                 if (reply == NULL)
452                         return NULL;
453
454                 return reply;
455         }
456         return NULL;
457 }
458
459 static void __ise_gl_lang_changed(void *data, Evas_Object *obj, void *event_info)
460 {
461         //Update genlist items. The Item texts will be translated in the _gl_text_get().
462         elm_genlist_realized_items_update(obj);
463 }
464
465 void set_source_caller_app_id(app_control_h app_control)
466 {
467         if (!app_control){
468                 PRINTFUNC(DLOG_ERROR, "can't get app_control");
469                 return;
470         }
471
472         char *caller = NULL;
473         app_control_get_caller(app_data->source_app_control, &caller);
474
475         if (caller){
476                 PRINTFUNC(DLOG_DEBUG, "caller = %s", caller);
477                 app_control_add_extra_data(app_control, "caller_appid", caller);
478                 free(caller);
479         }
480 }
481
482 void reply_to_sender_by_callback(const char *value, const char *type, const char *path[])
483 {
484         PRINTFUNC(DLOG_DEBUG, "");
485
486         app_control_h app_control;
487
488         if (app_control_create(&app_control) == 0) {
489                 int ret;
490
491                 if (value)
492                         app_control_add_extra_data(app_control, APP_CONTROL_DATA_TEXT, value);
493
494                 if (type)
495                         app_control_add_extra_data(app_control, "reply_type", type);
496
497                 if (path != NULL) {
498                         app_control_add_extra_data_array(app_control, APP_CONTROL_DATA_PATH, path, 1);
499                 }
500
501                 set_source_caller_app_id(app_control);
502
503                 ret = app_control_reply_to_launch_request(app_control, app_data->source_app_control, APP_CONTROL_RESULT_SUCCEEDED);
504                 if (ret != APP_CONTROL_ERROR_NONE)
505                         PRINTFUNC(DLOG_ERROR, "reply failed : %d", ret);
506
507                 app_control_destroy(app_control);
508                 app_control_destroy(app_data->source_app_control);
509                 app_data->source_app_control = NULL;
510         }
511 }
512
513 void reply_to_sender_by_callback_for_back()
514 {
515         PRINTFUNC(DLOG_DEBUG, "");
516
517         app_control_h app_control;
518
519         if (app_control_create(&app_control) == 0) {
520                 int ret;
521
522                 app_control_add_extra_data(app_control, "back_to_composer", "yes");
523
524                 ret = app_control_reply_to_launch_request(app_control, app_data->source_app_control, APP_CONTROL_RESULT_SUCCEEDED);
525                 if (ret != APP_CONTROL_ERROR_NONE)
526                         PRINTFUNC(DLOG_ERROR, "reply failed : %d", ret);
527
528                 app_control_destroy(app_control);
529                 app_control_destroy(app_data->source_app_control);
530                 app_data->source_app_control = NULL;
531         }
532 }
533
534 char* get_resource_path()
535 {
536         if (NULL == app_data->res_path) {
537                 app_data->res_path = app_get_resource_path();
538                 PRINTFUNC(DLOG_INFO, "set resource path = %s", app_data->res_path);
539         }
540         return (app_data->res_path);
541 }
542
543 char* get_shared_resource_path()
544 {
545         if (NULL == app_data->shared_res_path) {
546                 app_data->shared_res_path = app_get_shared_resource_path();
547                 PRINTFUNC(DLOG_INFO, "set shared resource path = %s", app_data->shared_res_path);
548         }
549         return (app_data->shared_res_path);
550 }
551
552 void show_gl_focus(Eina_Bool bVisible){
553         if (app_data->genlist == NULL)
554                 return;
555
556         if (bVisible == EINA_TRUE){
557                 elm_object_signal_emit(app_data->genlist, "elm,state,focus_bg,enable", "elm");
558                 //elm_layout_theme_set(app_data->genlist, "genlist", "base", "focus_bg");
559                 //elm_object_signal_emit(app_data->genlist, "elm,state,focus_bg,show", "elm");
560         } else {
561                 elm_object_signal_emit(app_data->genlist, "elm,state,focus_bg,disable", "elm");
562                 //elm_layout_theme_set(app_data->genlist, "genlist", "base", "default");
563                 //elm_object_signal_emit(app_data->genlist, "elm,state,focus_bg,hide", "elm");
564         }
565 }
566
567 void show_popup_toast(const char *text, bool check_img)
568 {
569         PRINTFUNC(DLOG_ERROR, "show_popup_toast");
570
571         Evas_Object *popup;
572
573         popup = elm_popup_add(app_data->win_main);
574         elm_object_style_set(popup, "toast/circle");
575         elm_popup_orient_set(popup, ELM_POPUP_ORIENT_BOTTOM);
576         evas_object_size_hint_weight_set(popup, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
577
578         if (check_img) {
579                 string path = get_resource_path();
580                 if (_WEARABLE)
581                         path = path + "wearable/";
582                 else if (_TV)
583                         path = path + "tv/";
584                 else
585                         path = path + "mobile/";
586                 string path_ic = path + "/images/toast_check_icon.png";
587                 Evas_Object * img = elm_image_add(popup);
588                 elm_image_file_set(img, path_ic.c_str(), NULL);
589                 elm_object_part_content_set(popup, "toast,icon", img);
590         }
591         if (text) {
592                 elm_object_part_text_set(popup, "elm.text", text);
593         }
594
595         eext_object_event_callback_add(popup, EEXT_CALLBACK_BACK, _popup_back_cb, NULL);
596         evas_object_smart_callback_add(popup, "dismissed", _popup_close_cb, NULL);
597         evas_object_smart_callback_add(popup, "block,clicked", _popup_back_cb, NULL);
598
599         elm_popup_timeout_set(popup, 2.0);
600         evas_object_show(popup);
601 }
602
603 static void _popup_close_cb(void *data, Evas_Object *obj, void *event_info)
604 {
605         if (obj){
606                 evas_object_hide(obj);
607                 evas_object_del(obj);
608         }
609 }
610
611 static void _popup_back_cb(void *data, Evas_Object *obj, void *event_info)
612 {
613         if (obj)
614                 elm_popup_dismiss(obj);
615 }
616
617
618 void _back_to_genlist_for_selector()
619 {
620         PRINTFUNC(DLOG_DEBUG, "");
621
622         if (!app_data) return;
623
624         if (_WEARABLE) {
625                 Evas_Object *circle_genlist = (Evas_Object *) evas_object_data_get(app_data->genlist, "circle");
626                 eext_rotary_object_event_activated_set(circle_genlist, EINA_TRUE);
627         }
628         if (app_data->app_type == APP_TYPE_STT || app_data->app_type == APP_TYPE_EMOTICON || app_data->app_type == APP_TYPE_KEYBOARD){
629                 PRINTFUNC(DLOG_DEBUG, "launched as STT/EMOTICON/KEYBOARD mode, So exit here.");
630                 reply_to_sender_by_callback(NULL, NULL, NULL);
631                 ui_app_exit();
632         }
633 }
634
635 static void _item_realized(void *data, Evas_Object *obj, void *event_info) //called when list scrolled
636 {
637         PRINTFUNC(DLOG_DEBUG, "%s", __func__);
638 }
639
640 Evas_Object* _create_genlist(Evas_Object* navi)
641 {
642         Evas_Object* genlist = elm_genlist_add(navi);
643         if (NULL == genlist)
644                 return NULL;
645
646         elm_genlist_mode_set(genlist, ELM_LIST_COMPRESS);
647         if (_WEARABLE) {
648                 Evas_Object* circle_object_genlist = eext_circle_object_genlist_add(genlist, app_data->circle_surface);
649                 eext_circle_object_genlist_scroller_policy_set(circle_object_genlist, ELM_SCROLLER_POLICY_OFF, ELM_SCROLLER_POLICY_OFF);
650                 evas_object_data_set(genlist, "circle", (void *) circle_object_genlist);
651                 eext_rotary_object_event_activated_set(circle_object_genlist, EINA_TRUE);
652         }
653         evas_object_size_hint_weight_set(genlist, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
654         evas_object_size_hint_align_set(genlist, EVAS_HINT_FILL, EVAS_HINT_FILL);
655
656         evas_object_smart_callback_add(genlist, "language,changed", __ise_gl_lang_changed, genlist);
657         evas_object_show(genlist);
658
659 //      uxt_genlist_set_bottom_margin_enabled(genlist, EINA_TRUE);
660
661         show_gl_focus(EINA_FALSE);
662
663         const char *item_style = NULL;
664         if (_WEARABLE)
665                 item_style = "empty";
666         Elm_Object_Item *nf_main_item = elm_naviframe_item_push(navi,
667             NULL,
668             NULL,
669             NULL,
670             genlist,
671             item_style);
672
673         elm_naviframe_item_pop_cb_set(nf_main_item, back_cb, app_data);
674         evas_object_smart_callback_add(genlist, "realized", _item_realized, NULL);
675
676         return genlist;
677 }
678
679 static void _item_position_changed_cb(void *data, Evas_Object *obj, void *event_info)
680 {
681         if (!obj) return;
682         if (!data) return;
683
684         Evas_Object *genlist = (Evas_Object *)obj;
685         Elm_Object_Item *gen_item = (Elm_Object_Item *)data;
686
687         Evas_Coord y;
688         elm_scroller_region_get(genlist, NULL, &y, NULL, NULL);
689
690 //      PRINTFUNC(DLOG_DEBUG,"y=%d",y);
691
692         if (250 > y && y >= 100){
693                 if (last_step == 0) return;
694                 last_step = 0;
695                 elm_object_item_signal_emit(gen_item, "elm,action,ime,0.0", "elm");
696                 show_gl_focus(EINA_TRUE);
697         } else if (100 > y && y >= 50){
698                 if (last_step == 1) return;
699                 last_step = 1;
700                 elm_object_item_signal_emit(gen_item, "elm,action,ime,0.1", "elm");
701                 show_gl_focus(EINA_TRUE);
702         } else if (y < 50 && y >=0){
703                 if (last_step == 2) return;
704                 last_step = 2;
705                 elm_object_item_signal_emit(gen_item, "elm,action,ime,0.9", "elm");
706                 show_gl_focus(EINA_FALSE);
707         }
708 }
709
710 static char *
711 _main_menu_title_text_get(void *data, Evas_Object *obj, const char *part)
712 {
713         char buf[1024];
714
715         snprintf(buf, 1023, "%s", "Select method");
716         return strdup(buf);
717 }
718
719 void _create_genlist_items(void* user_data)
720 {
721         App_Data* app_data = (App_Data*) user_data;
722
723         if (NULL == app_data->genlist) {
724                 app_data->genlist = _create_genlist(app_data->naviframe);
725                 if (NULL == app_data->genlist)
726                 return;
727         }
728
729         elm_genlist_clear(app_data->genlist);
730
731         Elm_Genlist_Item_Class * itc0 = elm_genlist_item_class_new();
732         itc0->item_style = "title";
733         itc0->func.text_get = _main_menu_title_text_get;
734         itc0->func.content_get = NULL;
735         itc0->func.state_get = NULL;
736         itc0->func.del = NULL;
737
738         Elm_Genlist_Item_Class * itc1 = elm_genlist_item_class_new();
739         if (g_input_type_data.input_type_array_len == 2){
740                 itc1->item_style = "2button_flat";
741                 itc1->func.text_get = NULL;
742                 itc1->func.content_get = __ise_gl_2button_content_get;
743                 itc1->func.state_get = NULL;
744                 itc1->func.del = NULL;
745         } else {
746                 itc1->item_style = "3button_flat";
747                 itc1->func.text_get = NULL;
748                 itc1->func.content_get = __ise_gl_3button_content_get;
749                 itc1->func.state_get = NULL;
750                 itc1->func.del = NULL;
751         }
752
753         // dummy title for empty space
754         it_empty = elm_genlist_item_append(app_data->genlist, itc0,
755                         NULL, NULL,
756                         ELM_GENLIST_ITEM_NONE,
757                         NULL, NULL);
758
759         // 3 Buttons
760         it_title = elm_genlist_item_append(app_data->genlist, itc1,
761                         NULL, NULL,
762                         ELM_GENLIST_ITEM_NONE,
763                         NULL, NULL);
764
765         elm_genlist_item_select_mode_set(it_title, ELM_OBJECT_SELECT_MODE_NONE);
766
767         g_template_item_size = _update_template_items(app_data);
768
769         Elm_Object_Item *item = elm_genlist_item_next_get(it_title);
770         elm_genlist_item_show(item, ELM_GENLIST_ITEM_SCROLLTO_MIDDLE);
771
772         evas_object_smart_callback_add(app_data->genlist, "elm,item,position,changed", _item_position_changed_cb, it_title);
773
774         elm_genlist_item_class_free(itc0);
775         elm_genlist_item_class_free(itc1);
776 }
777
778 void _create_header_items(void *user_data)
779 {
780         Elm_Genlist_Item_Class * itc0 = elm_genlist_item_class_new();
781         itc0->item_style = "title";
782         itc0->func.text_get = NULL;
783         itc0->func.content_get = NULL;
784         itc0->func.state_get = NULL;
785         itc0->func.del = NULL;
786
787         Elm_Genlist_Item_Class * itc1 = elm_genlist_item_class_new();
788         if (g_input_type_data.input_type_array_len == 2) {
789                 itc1->item_style = "2button_flat";
790                 itc1->func.text_get = NULL;
791                 itc1->func.content_get = __ise_gl_2button_content_get;
792                 itc1->func.state_get = NULL;
793                 itc1->func.del = NULL;
794         } else {
795                 itc1->item_style = "3button_flat";
796                 itc1->func.text_get = NULL;
797                 itc1->func.content_get = __ise_gl_3button_content_get;
798                 itc1->func.state_get = NULL;
799                 itc1->func.del = NULL;
800         }
801
802         // dummy title for empty space
803         it_empty = elm_genlist_item_append(app_data->genlist, itc0,
804                                 NULL, NULL,
805                                 ELM_GENLIST_ITEM_NONE,
806                                 NULL, NULL);
807
808         // 3 Buttons
809         it_title = elm_genlist_item_append(app_data->genlist, itc1,
810                                                         NULL, NULL,
811                                                         ELM_GENLIST_ITEM_NONE,
812                                                         NULL, NULL);
813
814         elm_genlist_item_select_mode_set(it_title, ELM_OBJECT_SELECT_MODE_NONE);
815
816         elm_genlist_item_class_free(itc0);
817         elm_genlist_item_class_free(itc1);
818 }
819
820 void _update_genlist_items(void *user_data)
821 {
822         elm_genlist_clear(app_data->genlist);
823
824         _create_header_items(user_data);
825
826         if (input_smartreply_is_enabled())
827                 g_smartreply_item_size = _update_smartreply_items(user_data);
828         else
829                 g_smartreply_item_size = 0;
830
831         g_template_item_size = _update_template_items(user_data);
832
833         /* Update genlist item position */
834         Elm_Object_Item *item = elm_genlist_item_next_get(it_title);
835         elm_genlist_item_show(item, ELM_GENLIST_ITEM_SCROLLTO_MIDDLE);
836 }
837
838 unsigned int _update_smartreply_items(void *user_data)
839 {
840         App_Data* app_data;
841
842         Elm_Object_Item *first;
843         Elm_Object_Item *menu;
844
845         unsigned int i = 0;
846         unsigned int len = 0;
847         unsigned int item_size = 0;
848
849         app_data = (App_Data *)user_data;
850
851         if (app_data == NULL) {
852                 PRINTFUNC(DLOG_ERROR, "Can not get app_data");
853                 return item_size;
854         }
855
856         if (app_data->genlist == NULL) {
857                 /* smartreply will update when genlist is exist only */
858                 PRINTFUNC(DLOG_ERROR, "Can not get getlist");
859                 return item_size;
860         }
861
862         /* Move to smartreply */
863         first = elm_genlist_first_item_get(app_data->genlist);
864         menu = elm_genlist_item_next_get(first);
865
866         if (input_smartreply_is_enabled() == false)
867                 return item_size;
868
869         /* Append newly added smartreply list */
870         len = input_smartreply_get_reply_num();
871
872         if (len > 0) {
873                 const std::vector<TemplateData>  template_list = input_template_get_list();
874
875                 Elm_Genlist_Item_Class *itc;
876
877                 itc = elm_genlist_item_class_new();
878                 itc->item_style = "1text";
879                 itc->func.text_get = __ise_smartreply_gl_text_get;
880                 itc->func.content_get = NULL;
881                 itc->func.state_get = NULL;
882                 itc->func.del = NULL;
883
884                 for (i = 0; i < len; i++) {
885                         char *reply = "hello";
886                         unsigned int j;
887                         bool matched;
888
889                         matched = false;
890
891                         int type;
892                         reply = input_smartreply_get_nth_item(i, &type);
893                         if (reply == NULL)
894                                 continue;
895                         PRINTFUNC(DLOG_DEBUG, "SmartReply = [%d]%s", i, reply);
896
897                         for (j = 0; j < template_list.size(); j++) {
898                                 const char *template_str;
899
900                                 if (template_list[j].use_gettext)
901                                         template_str = gettext(template_list[j].text.c_str());
902                                 else
903                                         template_str = template_list[j].text.c_str();
904
905                                 if (!__compare_string(reply, template_str)) {
906                                         matched = true;
907                                         break;
908                                 }
909                         }
910
911                         if (matched == true)
912                                 continue;
913
914                         elm_genlist_item_append(app_data->genlist,
915                                                 itc,
916                                                 (void *)(uintptr_t)i,
917                                                 NULL,
918                                                 ELM_GENLIST_ITEM_NONE,
919                                                 __ise_smartreply_gl_sel,
920                                                 app_data);
921
922                         item_size++;
923                         if (item_size >= 3)
924                                 break;
925                 }
926                 elm_genlist_item_class_free(itc);
927         }
928         return item_size;
929 }
930
931
932 unsigned int _update_template_items(void *user_data)
933 {
934         App_Data* app_data;
935
936         Elm_Object_Item *first;
937         Elm_Object_Item *menu;
938         Elm_Object_Item *pos;
939
940         unsigned int i = 0;
941         unsigned int item_size = 0;
942
943         app_data = (App_Data *)user_data;
944
945         if (app_data == NULL) {
946                 PRINTFUNC(DLOG_ERROR, "Can not get app_data");
947                 return item_size;
948         }
949
950         if (app_data->genlist == NULL) {
951                 /* smartreply will update when genlist is exist only */
952                 PRINTFUNC(DLOG_ERROR, "Can not get getlist");
953                 return item_size;
954         }
955
956         first = elm_genlist_first_item_get(app_data->genlist);
957         if (first == NULL)
958                 return 0;
959         menu = elm_genlist_item_next_get(first);
960
961         pos = menu;
962         /* move to smartreply next if it need */
963         if (input_smartreply_is_enabled()) {
964                 unsigned int j = 0;
965
966                 for (j = 0; j < g_smartreply_item_size; j++) {
967                         if (pos == NULL)
968                                 break;
969
970                         pos = elm_genlist_item_next_get(pos);
971                 }
972         }
973
974         /* Append New Template list */
975         const std::vector<TemplateData> template_list = input_template_get_list();
976
977         if (template_list.size() > 0) {
978                 Elm_Genlist_Item_Class *itc;
979
980                 itc = elm_genlist_item_class_new();
981
982                 itc->item_style = "1text";
983                 itc->func.text_get = __ise_template_gl_text_get;
984                 itc->func.content_get = NULL;
985                 itc->func.state_get = NULL;
986                 itc->func.del = NULL;
987
988                 for (i = 0; i < template_list.size(); i++) {
989                         pos = elm_genlist_item_append(app_data->genlist,
990                                         itc,
991                                         (void *)(uintptr_t)i,
992                                         NULL,
993                                         ELM_GENLIST_ITEM_NONE,
994                                         __ise_template_gl_sel,
995                                         app_data);
996                         item_size++;
997                 }
998                 elm_genlist_item_class_free(itc);
999         }
1000
1001         return item_size;
1002 }
1003
1004 bool __compare_string(const char * smart_str, const char * template_str)
1005 {
1006         int src_len = 0;
1007         int dst_len = 0;
1008         bool ret = true;
1009
1010         if(!smart_str||!template_str)
1011                 return ret;
1012
1013         src_len = strlen(smart_str);
1014         dst_len = strlen(template_str);
1015
1016         if(smart_str[src_len-1] == '.')
1017                 src_len--;
1018
1019         while(template_str[dst_len-1] == ' ')
1020                 dst_len--;
1021         if(template_str[dst_len-1] == '.')
1022                 dst_len--;
1023
1024         dst_len = (dst_len > src_len)? dst_len : src_len;
1025
1026         if(!strncmp(smart_str, template_str, (size_t)dst_len))
1027                 ret = false;
1028
1029         return (ret);
1030 }
1031
1032 bool _app_create(void* user_data)
1033 {
1034         int width = 1000, height = 1000;
1035 //      App_Data* app_data = NULL;
1036         Evas_Object* layout = NULL;
1037         Evas_Object* conform = NULL;
1038         Evas_Object* bg = NULL;
1039         Evas_Object* window = NULL;
1040         Eext_Circle_Surface *surface = NULL;
1041
1042         if (!user_data) {
1043                 return false;
1044         }
1045
1046         _app_language_changed(NULL, NULL);
1047
1048         app_data = (App_Data*)user_data;
1049
1050         elm_app_base_scale_set(1.3);
1051
1052         window = elm_win_add(NULL, PACKAGE, ELM_WIN_BASIC);
1053         if (window) {
1054                 init_customizing_theme();
1055
1056                 elm_win_title_set(window, PACKAGE);
1057                 elm_win_borderless_set(window, EINA_TRUE);
1058 //              ecore_x_window_size_get(ecore_x_window_root_first_get(), &width, &height);
1059                 evas_object_resize(window, width, height);
1060                 elm_win_indicator_mode_set(window, ELM_WIN_INDICATOR_SHOW);
1061         } else {
1062                 LOGE("elm_win_add() is failed.");
1063                 return false;
1064         }
1065
1066         bg = elm_bg_add(window);
1067         evas_object_size_hint_weight_set(bg, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1068         elm_win_resize_object_add(window, bg);
1069         evas_object_show(bg);
1070
1071         layout = elm_layout_add(window);
1072         elm_layout_theme_set(layout, "layout", "application", "default");
1073         evas_object_size_hint_weight_set(layout, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1074
1075         conform = elm_conformant_add(window);
1076         if (_WEARABLE)
1077                 surface = eext_circle_surface_conformant_add(conform);
1078
1079         evas_object_size_hint_weight_set(conform, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
1080
1081         elm_win_resize_object_add(window, conform);
1082         elm_object_content_set(conform, layout);
1083
1084         evas_object_show(layout);
1085         evas_object_show(conform);
1086         evas_object_show(window);
1087         app_data->win_main = window;
1088         app_data->conform = conform;
1089         app_data->layout_main = layout;
1090         app_data->circle_surface = surface;
1091         app_data->app_type = APP_TYPE_SELECT_MODE;
1092
1093         Evas_Object *naviframe = elm_naviframe_add(layout);
1094         elm_naviframe_prev_btn_auto_pushed_set(naviframe, EINA_FALSE);
1095         eext_object_event_callback_add(naviframe, EEXT_CALLBACK_BACK, eext_naviframe_back_cb, NULL);
1096         elm_object_part_content_set(layout, "elm.swallow.content", naviframe);
1097         evas_object_show(naviframe);
1098
1099         app_data->naviframe = naviframe;
1100
1101         return true;
1102 }
1103
1104 void _app_service(app_control_h service, void* user_data)
1105 {
1106         int ret;
1107         char *context = NULL;
1108         char **input_type_array = NULL;
1109         int input_type_array_len = -1;
1110         bool is_extra_data_array = false;
1111         char *mime_type = NULL;
1112
1113         app_control_clone(&(app_data->source_app_control), service);
1114         app_data->reply_type = REPLY_APP_NORMAL;
1115         app_data->mime_type = MIME_TYPE_ALL;
1116
1117         ret = app_control_get_mime(service, &mime_type);
1118         if (ret != APP_CONTROL_ERROR_NONE) {
1119                 LOGD("Fail to get mime type : %d", ret);
1120         } else {
1121                 if (mime_type) {
1122                         LOGD("mime type = %s", mime_type);
1123                         if (!strncmp(mime_type, "image/", strlen("image/"))) {
1124                                 app_data->mime_type = MIME_TYPE_IMAGE;
1125                                 app_data->app_type = APP_TYPE_DRAWING;
1126                                 launch_drawing_app((void *)app_data);
1127                                 if (mime_type)
1128                                         free(mime_type);
1129                                 goto ACTIVATE;
1130                         } else if(!strncmp(mime_type, "audio/", strlen("audio/"))) {
1131                                 app_data->mime_type = MIME_TYPE_AUDIO;
1132                                 app_data->app_type = APP_TYPE_STT;
1133                                 _stt_clicked_cb((void *)app_data, NULL, NULL);
1134                                 if (mime_type)
1135                                         free(mime_type);
1136                                 goto ACTIVATE;
1137                         } else if(!strncmp(mime_type, "text/", strlen("text/"))) {
1138                                 app_data->mime_type = MIME_TYPE_TEXT;
1139                         }
1140                 }
1141         }
1142         if (mime_type)
1143                 free(mime_type);
1144
1145         if (_TV || _MOBILE) {
1146                 app_data->app_type = APP_TYPE_KEYBOARD;
1147                 input_keyboard_init(service);
1148                 _keyboard_clicked_cb((void *)app_data, NULL, NULL);
1149                 goto ACTIVATE;
1150         }
1151
1152         ret = app_control_is_extra_data_array(service, APP_CONTROL_DATA_INPUT_TYPE, &is_extra_data_array);
1153         if ( is_extra_data_array == true) {
1154                 ret = app_control_get_extra_data_array(service, APP_CONTROL_DATA_INPUT_TYPE, &input_type_array, &input_type_array_len);
1155                 g_input_type_data.input_type_array = input_type_array;
1156                 g_input_type_data.input_type_array_len = input_type_array_len;
1157         } else {
1158                 ret = app_control_get_extra_data(service, APP_CONTROL_DATA_INPUT_TYPE, &context);
1159                 if (ret == APP_CONTROL_ERROR_NONE) {
1160                         if (!strcmp(context, "input_voice")) {
1161                                 app_data->app_type = APP_TYPE_STT;
1162                                 _stt_clicked_cb((void *)app_data, NULL, NULL);
1163                                 goto ACTIVATE;
1164                         } else if (!strcmp(context, "input_emoticon")) {
1165                                 app_data->app_type = APP_TYPE_EMOTICON;
1166                                 _emoticon_clicked_cb((void *)app_data, NULL, NULL);
1167                                 goto ACTIVATE;
1168                         } else if (!strcmp(context, "input_keyboard")) {
1169                                 app_data->app_type = APP_TYPE_KEYBOARD;
1170                                 input_keyboard_init(service);
1171                                 _keyboard_clicked_cb((void *)app_data, NULL, NULL);
1172                                 goto ACTIVATE;
1173                         } else if (!strcmp(context, "input_reply")) {
1174                                 app_data->app_type = APP_TYPE_REPLY;
1175                         }
1176                 }
1177         }
1178
1179         if (app_data->genlist == NULL)
1180                 app_data->genlist = _create_genlist(app_data->naviframe);
1181
1182         input_keyboard_init(service);
1183
1184         input_smartreply_init(service);
1185         input_smartreply_set_notify(_input_smartreply_notify_cb, NULL);
1186
1187         if (input_smartreply_is_enabled())
1188                 input_smartreply_get_reply_async();
1189
1190         input_template_init(service);
1191         input_template_set_notify(_input_template_notify_cb,  NULL);
1192
1193         _create_genlist_items(app_data);
1194
1195 ACTIVATE :
1196         elm_win_activate(app_data->win_main);
1197
1198         if (context)
1199                 free(context);
1200 }
1201
1202
1203 void _app_pause(void* user_data)
1204 {
1205         PRINTFUNC(DLOG_DEBUG, "");
1206         pause_voice();
1207 }
1208
1209 void _app_resume(void* user_data)
1210 {
1211         PRINTFUNC(DLOG_DEBUG, "");
1212 }
1213
1214 void _app_terminate(void* user_data)
1215 {
1216         App_Data* app_data = NULL;
1217         app_data = (App_Data*)user_data;
1218
1219         if (app_data->genlist){
1220                 evas_object_smart_callback_del(app_data->genlist, "elm,item,position,changed", _item_position_changed_cb);
1221         }
1222
1223         if (app_data->res_path)
1224                 free(app_data->res_path);
1225
1226         if (app_data->shared_res_path)
1227                 free(app_data->shared_res_path);
1228
1229         input_keyboard_deinit();
1230         input_smartreply_deinit();
1231
1232         input_template_unset_notify();
1233         input_template_deinit();
1234
1235         input_type_deinit();
1236 }
1237
1238 static int init_i18n(const char *domain, const char *dir, char *lang_str)
1239 {
1240         if (setlocale(LC_ALL, "") == NULL) {
1241                 PRINTFUNC(DLOG_INFO, "Some environment variable is invalid, setlocale(LC_ALL, \"\") has returns\ed a null pointer");
1242                 if (setlocale(LC_ALL, lang_str) == NULL)
1243                         return -1;
1244         }
1245         if (bindtextdomain(domain, dir) == NULL)
1246                 return -1;
1247         if (textdomain(domain) == NULL)
1248                 return -1;
1249
1250         return 0;
1251 }
1252
1253 /**
1254  * @brief Set language and locale.
1255  *
1256  * @return void
1257  */
1258 static void _app_language_changed(app_event_info_h event_info, void *user_data)
1259 {
1260         char* lang_str = vconf_get_str(VCONFKEY_LANGSET);
1261         if (lang_str) {
1262                 setenv("LANG", lang_str, 1);
1263                 setenv("LC_MESSAGES", lang_str, 1);
1264         } else {
1265                 setenv("LANG", "en_GB.utf8", 1);
1266                 setenv("LC_MESSAGES", "en_GB.utf8", 1);
1267                 lang_str = strdup("en_GB.UTF-8");
1268         }
1269
1270         init_i18n(PACKAGE, LOCALEDIR, lang_str);
1271
1272         if (lang_str) {
1273                 elm_language_set(lang_str);
1274                 free(lang_str);
1275         }
1276 }
1277
1278 void input_type_deinit(void)
1279 {
1280         int i = 0;
1281         char **data_array = NULL;
1282
1283         data_array = g_input_type_data.input_type_array;
1284         if (data_array) {
1285                 for (i = 0; i < g_input_type_data.input_type_array_len; i++) {
1286                         if (*(data_array + i))
1287                                 free(*(data_array + i));
1288                 }
1289                 free(data_array);
1290         }
1291         g_input_type_data.input_type_array = NULL;
1292         g_input_type_data.input_type_array_len = 0;
1293 }
1294
1295 EXPORTED int main(int argc, char* argv[])
1296 {
1297         App_Data app_data = {0, };
1298         ui_app_lifecycle_callback_s event_callback = {0, };
1299         app_event_handler_h handlers[5] = {NULL, };
1300
1301         event_callback.create = _app_create;
1302         event_callback.terminate = _app_terminate;
1303         event_callback.pause = _app_pause;
1304         event_callback.resume = _app_resume;
1305         event_callback.app_control = _app_service;
1306
1307         ui_app_add_event_handler(&handlers[APP_EVENT_LOW_BATTERY], APP_EVENT_LOW_BATTERY, NULL, &app_data);
1308         ui_app_add_event_handler(&handlers[APP_EVENT_LOW_MEMORY], APP_EVENT_LOW_MEMORY, NULL, &app_data);
1309         ui_app_add_event_handler(&handlers[APP_EVENT_DEVICE_ORIENTATION_CHANGED], APP_EVENT_DEVICE_ORIENTATION_CHANGED, NULL, &app_data);
1310         ui_app_add_event_handler(&handlers[APP_EVENT_LANGUAGE_CHANGED], APP_EVENT_LANGUAGE_CHANGED, _app_language_changed, &app_data);
1311         ui_app_add_event_handler(&handlers[APP_EVENT_REGION_FORMAT_CHANGED], APP_EVENT_REGION_FORMAT_CHANGED, NULL, &app_data);
1312
1313         _init_app_data(&app_data);
1314
1315         int ret = ui_app_main(argc, argv, &event_callback, &app_data);
1316         if (ret != APP_ERROR_NONE) {
1317                 LOGD("ui_app_main() is failed. err = %d", ret);
1318         }
1319
1320         return ret;
1321 }