943ab3b9c1f0b83dafa483df6c6748c0becb9bb2
[platform/core/uifw/inputdelegator.git] / src / w-input-keyboard.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 <Elementary.h>
21
22 #include <stdlib.h>
23
24 #include "w-input-keyboard.h"
25 #include "w-input-selector.h"
26
27 extern InputKeyboardData g_input_keyboard_data;
28 extern App_Data* app_data;
29
30 Evas_Object *entry;
31
32 bool input_keyboard_init(app_control_h app_control)
33 {
34         int ret = -1;
35         char *default_text = NULL;
36         char *guide_text = NULL;
37
38         input_keyboard_deinit();
39
40         ret = app_control_get_extra_data(app_control, APP_CONTROL_DATA_INPUT_DEFAULT_TEXT, &default_text);
41         if (ret == APP_CONTROL_ERROR_NONE) {
42                 g_input_keyboard_data.default_text = default_text;
43         }
44         ret = app_control_get_extra_data(app_control, APP_CONTROL_DATA_INPUT_GUIDE_TEXT, &guide_text);
45         if (ret == APP_CONTROL_ERROR_NONE) {
46                 g_input_keyboard_data.guide_text = guide_text;
47         }
48
49         return true;
50 }
51
52 void input_keyboard_deinit(void)
53 {
54         if (g_input_keyboard_data.guide_text)
55                 free(g_input_keyboard_data.guide_text);
56
57         if (g_input_keyboard_data.default_text)
58                 free(g_input_keyboard_data.default_text);
59
60         g_input_keyboard_data.default_text = NULL;
61         g_input_keyboard_data.guide_text = NULL;
62
63         return;
64 }
65
66 void btn_clicked_cb(void *data, Evas_Object *obj, void *event_info)
67 {
68         app_control_h app_control;
69         int ret = app_control_create(&app_control);
70         if (ret != APP_CONTROL_ERROR_NONE) {
71                 PRINTFUNC(DLOG_ERROR, "Can not create app_control : %d", ret);
72                 return;
73         }
74
75         const char *getText = elm_entry_entry_get(entry);
76         LOGD("button key clicked!! : getText = %s", getText);
77
78         char *app_id = NULL;
79         app_control_get_caller(app_data->source_app_control, &app_id);
80         if (app_id != NULL)
81                 app_control_set_app_id(app_control, app_id);
82         app_control_set_operation(app_control, APP_CONTROL_OPERATION_DEFAULT);
83         set_source_caller_app_id(app_control);
84         free(app_id);
85         reply_to_sender_by_callback(getText, "keyboard");
86         elm_exit();
87 }
88
89 static Eina_Bool custom_back_cb(void *data, Elm_Object_Item *it)
90 {
91         _back_to_genlist_for_selector();
92         return EINA_TRUE;
93 }
94
95 void create_fullscreen_editor(void *data)
96 {
97         App_Data *ad = (App_Data *)data;
98
99         Evas_Object *box = elm_box_add(ad->naviframe);
100         evas_object_size_hint_weight_set(box, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
101         evas_object_show(box);
102         elm_win_resize_object_add(ad->naviframe, box);
103
104         entry = elm_entry_add(box);
105         elm_entry_single_line_set(entry, EINA_TRUE);
106         elm_entry_scrollable_set(entry, EINA_TRUE);
107         elm_scroller_policy_set(entry, ELM_SCROLLER_POLICY_OFF, ELM_SCROLLER_POLICY_AUTO);
108         elm_object_part_text_set(entry, "elm.guide", g_input_keyboard_data.guide_text);
109         elm_entry_entry_set(entry, g_input_keyboard_data.default_text);
110         elm_entry_cursor_end_set(entry);
111         evas_object_size_hint_weight_set(entry, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
112         evas_object_size_hint_align_set(entry, EVAS_HINT_FILL, EVAS_HINT_FILL);
113         evas_object_show(entry);
114         elm_box_pack_end(box, entry);
115
116         Evas_Object *btn = elm_button_add(box);
117         elm_object_text_set(btn, "SEND");
118         evas_object_size_hint_weight_set(btn, EVAS_HINT_EXPAND, 0.5);
119         evas_object_size_hint_align_set(btn, EVAS_HINT_FILL, EVAS_HINT_FILL);
120         evas_object_smart_callback_add(btn, "clicked", btn_clicked_cb, NULL);
121         evas_object_show(btn);
122         elm_box_pack_end(box, btn);
123         evas_object_resize(ad->naviframe, 360, 360);
124         evas_object_show(ad->naviframe);
125
126         Elm_Object_Item *nf_item = elm_naviframe_item_push(ad->naviframe, NULL, NULL, NULL, box, "empty");
127         elm_naviframe_item_pop_cb_set(nf_item, custom_back_cb, NULL);
128 }
129
130 bool input_keyboard_launch(Evas_Object *window, void *data) {
131         if (window == NULL) {
132                 PRINTFUNC(DLOG_ERROR, "Can not get window");
133                 return false;
134         }
135         create_fullscreen_editor(data);
136         return true;
137 }
138