1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
|
/*
* Copyright (c) 2000-2015 Samsung Electronics Co., Ltd All Rights Reserved
*
* PROPRIETARY/CONFIDENTIAL
*
* This software is the confidential and proprietary information of
* SAMSUNG ELECTRONICS ("Confidential Information").
* You shall not disclose such Confidential Information and shall
* use it only in accordance with the terms of the license agreement
* you entered into with SAMSUNG ELECTRONICS.
* SAMSUNG make no representations or warranties about the suitability
* of the software, either express or implied, including but not
* limited to the implied warranties of merchantability, fitness for
* a particular purpose, or non-infringement.
* SAMSUNG shall not be liable for any damages suffered by licensee as
* a result of using, modifying or distributing this software or its derivatives.
*/
#include <app.h>
#include <nfc.h>
#include <vconf.h>
#include <pkgmgr-info.h>
#include "nsa-view.h"
#include "nsa-main.h"
#include "nsa-debug.h"
#include "nsa-util.h"
#include "nsa-ui-widget.h"
#include "nsa-popup.h"
#include "nsa-string.h"
static void __get_payment_handler(char **handler)
{
char *appid;
NSA_MEM_FREE(*handler);
appid = vconf_get_str(VCONFKEY_NFC_PAYMENT_HANDLERS);
if (appid != NULL) {
pkgmgrinfo_pkginfo_h pkginfo = NULL;
char *label = NULL;
int ret;
ret = pkgmgrinfo_pkginfo_get_pkginfo(appid, &pkginfo);
if (ret != 0) {
return;
}
ret = pkgmgrinfo_pkginfo_get_label(pkginfo, &label);
if (ret != 0) {
pkgmgrinfo_pkginfo_destroy_pkginfo(pkginfo);
return;
} else {
NSA_MEM_STRDUP(*handler, label);
if (*handler != NULL)
NSA_DEBUG("text: %s", *handler);
pkgmgrinfo_pkginfo_destroy_pkginfo(pkginfo);
}
}
}
static void __update_onoff_obj(void *data)
{
appdata *ad = data;
ret_if(ad == NULL);
NSA_DEBUG("__update_onoff_obj");
elm_object_item_disabled_set(ad->on_off, false);
elm_genlist_item_fields_update(ad->on_off, "*", ELM_GENLIST_ITEM_FIELD_CONTENT);
}
static void __update_tap_and_pay_obj(void *data)
{
appdata *ad = data;
ret_if(ad == NULL);
NSA_DEBUG("__update_tap_and_pay_obj");
elm_object_item_disabled_set(ad->tap_n_pay, !nfc_manager_is_activated());
elm_genlist_item_fields_update(ad->tap_n_pay, "*", ELM_GENLIST_ITEM_FIELD_TEXT);
}
static void __nfc_activation_completed_cb(nfc_error_e error,
void *user_data)
{
appdata *ad = user_data;
g_assert(ad != NULL);
/* handle error cases */
if (error != NFC_ERROR_NONE)
NSA_DEBUG_ERR("__nfc_activation_completed_cb failed");
/* update ui after activation is completed */
__update_onoff_obj(ad);
__update_tap_and_pay_obj(ad);
}
static void __change_nfc_onoff_setting(void *data)
{
appdata *ad = data;
int result;
ret_if(ad == NULL);
NSA_BEGIN();
/* V1.9 : instead of toast popup, disable item during operation */
if(ad->on_off != NULL)
elm_object_item_disabled_set(ad->on_off, true);
result = nfc_manager_set_activation(!nfc_manager_is_activated(),
__nfc_activation_completed_cb, ad);
ret_if(result != NFC_ERROR_NONE);
NSA_END();
}
static void __gl_on_off_clicked_cb(void *data, Evas_Object *obj, void *event_info)
{
appdata *ad = data;
Elm_Object_Item* it = (Elm_Object_Item *)event_info;
elm_genlist_item_selected_set(it, EINA_FALSE);
NSA_DEBUG("__gl_on_off_clicked_cb");
__change_nfc_onoff_setting(ad);
}
static void __gl_tap_n_pay_clicked_cb(void *data, Evas_Object *obj, void *event_info)
{
appdata *ad = data;
NSA_DEBUG("__gl_tap_n_pay_clicked_cb");
_nsa_view_tap_n_pay_create(ad);
}
/* for item class */
static Evas_Object *__gl_content_get_on_off(void *data, Evas_Object *obj,
const char *part)
{
if (!strcmp(part, "elm.icon")) {
Evas_Object *check;
check = elm_check_add(obj);
retv_if(check == NULL, NULL);
elm_access_object_unregister(check);
elm_object_style_set(check, "on&off/list");
if (nfc_manager_is_activated())
elm_check_state_set(check, EINA_TRUE);
else
elm_check_state_set(check, EINA_FALSE);
evas_object_size_hint_align_set(check, EVAS_HINT_FILL, EVAS_HINT_FILL);
evas_object_size_hint_weight_set(check, EVAS_HINT_EXPAND, EVAS_HINT_EXPAND);
evas_object_propagate_events_set(check, EINA_FALSE);
evas_object_repeat_events_set(check, EINA_TRUE);
evas_object_smart_callback_add(check, "changed", __gl_on_off_clicked_cb, data);
return check;
} else {
return NULL;
}
}
static char *__gl_text_get_nfc(void *data, Evas_Object *obj,
const char *part)
{
if (!strcmp(part, "elm.text")) {
return strdup(IDS_NFC_NFC);
} else {
return NULL;
}
}
static char *__gl_text_get_tap_n_pay(void *data, Evas_Object *obj,
const char *part)
{
appdata *ad = data;
NSA_DEBUG("part : %s", part);
if (!strcmp(part, "elm.text")) {
return strdup(IDS_TAP_AND_PAY);
} else if (!strcmp(part, "elm.text.1")) {
if (ad->payment_handler != NULL) {
NSA_DEBUG("ad->payment_handler : %s", ad->payment_handler);
return strdup(ad->payment_handler);
}
else
return NULL;
} else {
return NULL;
}
}
static Evas_Object *__create_nfc_setting_list(void *data)
{
appdata *ad = data;
Evas_Object *genlist;
Elm_Genlist_Item_Class *itc_title, *itc_on_off, *itc_list, *itc_padding;
retv_if(ad == NULL, NULL);
__get_payment_handler(&ad->payment_handler);
/* make genlist */
genlist = elm_genlist_add(ad->navi_frame);
retv_if(genlist == NULL, NULL);
/* set genlist property */
elm_genlist_mode_set(genlist, ELM_LIST_COMPRESS);
ad->main_circle_obj = eext_circle_object_genlist_add(genlist, ad->circle_surface);
eext_circle_object_genlist_scroller_policy_set(ad->main_circle_obj,
ELM_SCROLLER_POLICY_OFF, ELM_SCROLLER_POLICY_AUTO);
eext_rotary_object_event_activated_set(ad->main_circle_obj, EINA_TRUE);
/* create genlist class + */
itc_title = elm_genlist_item_class_new();
itc_title->item_style = "title";
itc_title->func.text_get = __gl_text_get_nfc;
itc_on_off = elm_genlist_item_class_new();
itc_on_off->item_style = "1text.1icon.1";
itc_on_off->func.text_get = __gl_text_get_nfc;
itc_on_off->func.content_get = __gl_content_get_on_off;
itc_list = elm_genlist_item_class_new();
if (ad->payment_handler != NULL)
itc_list->item_style = "2text";
else
itc_list->item_style = "1text";
itc_list->func.text_get = __gl_text_get_tap_n_pay;
itc_padding = elm_genlist_item_class_new();
itc_padding->item_style = "padding";
/* create genlist class - */
/* ADD: ITEM */
elm_genlist_item_append(genlist, itc_title,
NULL, NULL, ELM_GENLIST_ITEM_NONE, NULL, NULL);
ad->on_off = elm_genlist_item_append(genlist, itc_on_off,
ad, NULL, ELM_GENLIST_ITEM_NONE, __gl_on_off_clicked_cb, ad);
ad->tap_n_pay = elm_genlist_item_append(genlist, itc_list,
ad, NULL, ELM_GENLIST_ITEM_NONE, __gl_tap_n_pay_clicked_cb, ad);
elm_genlist_item_append(genlist, itc_padding,
NULL, NULL, ELM_GENLIST_ITEM_NONE, NULL, NULL);
elm_genlist_item_class_free(itc_title);
elm_genlist_item_class_free(itc_on_off);
elm_genlist_item_class_free(itc_list);
elm_genlist_item_class_free(itc_padding);
/* V2.1 */
__update_tap_and_pay_obj(ad);
evas_object_show(genlist);
return genlist;
}
static void __payment_handler_vconf_key_changed (keynode_t *key,
void *data)
{
appdata *ad = data;
NSA_DEBUG("__payment_handler_vconf_key_changed");
/* Get changed payment handler */
__get_payment_handler(&ad->payment_handler);
/* update ui tap and pay */
__update_tap_and_pay_obj(ad);
}
bool _nsa_view_main_create(void *data)
{
appdata *ad = data;
retv_if(ad == NULL, false);
/* Draw UI */
ad->main_genlist = __create_nfc_setting_list(ad);
retv_if(ad->main_genlist == NULL, false);
elm_naviframe_item_push(ad->navi_frame, NULL, NULL, NULL, ad->main_genlist, "empty");
ad->current_view = V_MAIN;
if (VCONF_OK != vconf_notify_key_changed(VCONFKEY_NFC_PAYMENT_HANDLERS,
__payment_handler_vconf_key_changed, ad)) {
NSA_DEBUG_ERR("vconf_notify_key_changed error");
}
return true;
}
|