Merge "Unused variables removed." into sandbox/stanluk/tizen_sdk
[apps/core/preloaded/indicator-win.git] / src / icon.c
1 /*
2  *  Indicator
3  *
4  * Copyright (c) 2000 - 2015 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Licensed under the Apache License, Version 2.0 (the "License");
7  * you may not use this file except in compliance with the License.
8  * You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS,
14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  * See the License for the specific language governing permissions and
16  * limitations under the License.
17  *
18  */
19
20
21 #include <Eina.h>
22 #include <app_preference.h>
23
24 #include "common.h"
25 #include "box.h"
26 #include "icon.h"
27 #include "list.h"
28 #include "main.h"
29 #include "indicator_gui.h"
30 #include "util.h"
31 #include "log.h"
32
33 #define PRIVATE_DATA_KEY_ICON_B_ANI "p_i_ba"
34
35 #define ON_TIMER_ICON_ANIMATION_FRAME_TIME 0.3
36 #define UPLOAD_ICON_ANIMATION_SIGNAL    "indicator.ani.uploading.%d"
37 #define DOWNLOAD_ICON_ANIMATION_SIGNAL "indicator.ani.downloading.%d"
38
39 static unsigned int update_icon_flag = 1;       // For battery problem
40
41 static void _reset_on_timer_icon_animation(icon_s *icon)
42 {
43         ret_if(!icon);
44
45         if (icon->p_animation_timer) {
46                 ecore_timer_del(icon->p_animation_timer);
47                 icon->p_animation_timer = NULL;
48         }
49         icon->animation_in_progress = EINA_FALSE;
50         icon->last_animation_timestamp = ecore_time_unix_get();
51         icon->signal_to_emit_prefix[0] = '\0';
52         icon->animation_state = UD_ICON_ANI_STATE_0;
53 }
54
55
56
57 static Eina_Bool _animate_on_timer_cb(void *data)
58 {
59         icon_s *icon = NULL;
60
61         retv_if(!data, ECORE_CALLBACK_CANCEL);
62
63         icon = (icon_s *)data;
64
65         if (icon->animation_in_progress == EINA_FALSE) {
66                 icon->p_animation_timer = NULL;
67                 return ECORE_CALLBACK_CANCEL;
68         }
69
70         if ((ecore_time_unix_get() - icon->last_animation_timestamp) < ON_TIMER_ICON_ANIMATION_FRAME_TIME) {
71                 return ECORE_CALLBACK_RENEW;
72         }
73
74         Evas_Object *img_edje = elm_layout_edje_get(icon->img_obj.obj);
75         retv_if(!img_edje, ECORE_CALLBACK_CANCEL);
76
77         char signal_to_emit[32] = {'\0',};
78         sprintf(signal_to_emit,icon->signal_to_emit_prefix,icon->animation_state);
79
80         edje_object_signal_emit(img_edje, signal_to_emit,"prog");
81
82         if (icon->animation_state == UD_ICON_ANI_STATE_MAX) {
83                 icon->animation_state = UD_ICON_ANI_STATE_0;
84         } else {
85                 icon->animation_state++;
86         }
87         icon->last_animation_timestamp = ecore_time_unix_get();
88
89         return ECORE_CALLBACK_RENEW;
90 }
91
92
93
94 static const char *_icon_ani_type_set_send_signal(icon_s *icon, Icon_Ani_Type type)
95 {
96         retv_if(!icon, NULL);
97
98         const char *BLINK_SIGNAL = "icon,state,blink";
99         const char *ROATATE_SIGNAL = "icon,state,rotate";
100         const char *METRONOME_SIGNAL = "icon,state,metronome";
101         const char *DEFAULT = "icon,state,default";
102         const char *send_signal = DEFAULT;
103
104         switch (type) {
105         case ICON_ANI_BLINK:
106                 send_signal = BLINK_SIGNAL;
107                 break;
108         case ICON_ANI_ROTATE:
109                 send_signal = ROATATE_SIGNAL;
110                 break;
111         case ICON_ANI_METRONOME:
112                 send_signal = METRONOME_SIGNAL;
113                 break;
114         case ICON_ANI_DOWNLOADING:
115         case ICON_ANI_UPLOADING:
116                 /* If this icon is already animated during download/upload we don't have to set timer again */
117                 if (icon->animation_in_progress == EINA_FALSE) {
118                         _reset_on_timer_icon_animation(icon);
119                         send_signal = "dummy.signal";
120
121                         if (type == ICON_ANI_DOWNLOADING) {
122                                 strncpy(icon->signal_to_emit_prefix, DOWNLOAD_ICON_ANIMATION_SIGNAL, sizeof(DOWNLOAD_ICON_ANIMATION_SIGNAL));
123                         }
124
125                         if (type == ICON_ANI_UPLOADING) {
126                                 strncpy(icon->signal_to_emit_prefix, UPLOAD_ICON_ANIMATION_SIGNAL,sizeof(UPLOAD_ICON_ANIMATION_SIGNAL));
127                         }
128                         icon->animation_in_progress = EINA_TRUE;
129                         icon->p_animation_timer = ecore_timer_add(ON_TIMER_ICON_ANIMATION_FRAME_TIME,_animate_on_timer_cb, icon);
130                 }
131                 break;
132         default:
133                 break;
134         }
135
136         return send_signal;
137 }
138
139
140
141 void icon_ani_set(icon_s *icon, Icon_Ani_Type type)
142 {
143         Evas_Object *img_edje = NULL;
144         const char *send_signal = NULL;
145
146         ret_if(!icon);
147
148         icon->ani = type;
149
150         if (!icon->obj_exist) return;
151
152         send_signal = _icon_ani_type_set_send_signal(icon, type);
153         ret_if(!send_signal);
154
155         switch (icon->type) {
156         case INDICATOR_IMG_ICON:
157                 img_edje = elm_layout_edje_get(icon->img_obj.obj);
158                 edje_object_signal_emit(img_edje, send_signal,"elm.swallow.icon");
159                 break;
160         case INDICATOR_TXT_ICON:
161                 break;
162         case INDICATOR_TXT_WITH_IMG_ICON:
163                 break;
164         case INDICATOR_DIGIT_ICON:
165                 img_edje = elm_layout_edje_get(icon->img_obj.obj);
166                 edje_object_signal_emit(img_edje, send_signal,"elm.swallow.icon");
167                 break;
168         default:
169                 break;
170         }
171 }
172
173
174
175 static void _fixed_icon_layout_file_set(icon_s *icon, Evas_Object *ly)
176 {
177         ret_if(!icon);
178         ret_if(!ly);
179
180         if(icon->type == INDICATOR_DIGIT_ICON && icon->digit_area == DIGIT_DOZENS) {
181                 elm_layout_file_set(ly, util_get_res_file_path(ICON_THEME_FILE), "elm/indicator/icon/dozen_digit");
182         } else {
183                 elm_layout_file_set(ly, util_get_res_file_path(ICON_THEME_FILE), "elm/indicator/icon/base");
184         }
185 }
186
187
188
189 static void _noti_ani_icon_layout_file_set(int noti_is_ani, Evas_Object *ly)
190 {
191         ret_if(!ly);
192
193         if (noti_is_ani) {
194                 evas_object_data_set(ly, PRIVATE_DATA_KEY_ICON_B_ANI, (void *) 1);
195                 elm_layout_file_set(ly, util_get_res_file_path(ICON_NONFIXED_THEME_ANI_FILE), "elm/indicator/icon/base");
196         } else {
197                 elm_layout_file_set(ly, util_get_res_file_path(ICON_NONFIXED_THEME_FILE), "elm/indicator/icon/base");
198         }
199 }
200
201
202
203 static Evas_Object *_img_icon_add(win_info *win, icon_s *icon)
204 {
205         char path[PATH_MAX];
206         Evas_Object *evas_icon;
207         Evas_Object *ly;
208         const char *imgpath = NULL;
209         int noti_is_ani = 0;
210         int b_ani = 0;
211
212         retv_if(!win, NULL);
213         retv_if(!icon, NULL);
214
215         imgpath = (char *) icon->img_obj.data;
216
217         _reset_on_timer_icon_animation(icon);
218
219         if (icon->img_obj.width <= 0) {
220                 icon->img_obj.width = DEFAULT_ICON_WIDTH;
221         }
222
223         if (icon->img_obj.height <= 0) {
224                 icon->img_obj.height = DEFAULT_ICON_HEIGHT;
225         }
226
227         memset(path, 0x00, sizeof(path));
228
229         ly = elm_layout_add(win->layout);
230         retv_if(!ly, NULL);
231
232         if (icon->area == INDICATOR_ICON_AREA_FIXED) {
233                 _fixed_icon_layout_file_set(icon, ly);
234         } else {
235                 noti_is_ani = util_check_noti_ani(imgpath);
236                 _noti_ani_icon_layout_file_set(noti_is_ani, ly);
237         }
238
239         evas_icon = elm_image_add(ly);
240         retv_if(!evas_icon, NULL);
241
242         b_ani = (int) evas_object_data_get(ly, PRIVATE_DATA_KEY_ICON_B_ANI);
243         if (!b_ani) {
244                 /* Absolute path? */
245                 if (strncmp(imgpath, "/", 1) != 0) {
246                         snprintf(path, sizeof(path), "%s/%s", util_get_icon_dir(), imgpath);
247                 } else {
248                         strncpy(path, imgpath, sizeof(path)-1);
249                 }
250
251                 if (!ecore_file_exists(path)) {
252                         _E("icon file does not exist : %s", path);
253                 }
254                 elm_image_file_set(evas_icon, path, NULL);
255         }
256
257         evas_object_size_hint_min_set(evas_icon, ELM_SCALE_SIZE(icon->img_obj.width), ELM_SCALE_SIZE(icon->img_obj.height));
258         elm_object_part_content_set(ly, "elm.swallow.icon", evas_icon);
259
260         evas_object_data_set(ly, DATA_KEY_IMG_ICON, evas_icon);
261         evas_object_size_hint_min_set(ly, ELM_SCALE_SIZE(icon->img_obj.width), ELM_SCALE_SIZE(icon->img_obj.height));
262         evas_object_hide(ly);
263
264         return ly;
265 }
266
267
268
269 char *icon_label_set(const char *buf, char *font_name, char *font_style, int font_size, void *data)
270 {
271         Eina_Strbuf *temp_buf = NULL;
272         char *ret_str = NULL;
273         char *label_font = ICON_FONT_NAME;
274         char *label_font_style = ICON_FONT_STYLE;
275         int label_font_size = ICON_FONT_SIZE;
276         Eina_Bool buf_result = EINA_FALSE;
277
278         retif(data == NULL || buf == NULL, NULL, "Invalid parameter!");
279
280         temp_buf = eina_strbuf_new();
281         if (font_name != NULL)
282                 label_font = font_name;
283         if (font_style != NULL)
284                 label_font_style = font_style;
285         if (font_size > 0)
286                 label_font_size = font_size;
287
288         buf_result = eina_strbuf_append_printf(temp_buf, CUSTOM_LABEL_STRING,
289                                                    label_font, label_font_style,
290                                                    label_font_size, buf);
291
292         if (buf_result != EINA_FALSE)
293                 ret_str = eina_strbuf_string_steal(temp_buf);
294
295         eina_strbuf_free(temp_buf);
296
297         return ret_str;
298 }
299
300
301
302 Eina_Bool icon_add(win_info *win, icon_s *icon)
303 {
304         retv_if(!icon, EINA_FALSE);
305
306         switch (icon->type) {
307         case INDICATOR_TXT_ICON:
308                 break;
309         case INDICATOR_IMG_ICON:
310                 icon->img_obj.obj = _img_icon_add(win, icon);
311                 break;
312         case INDICATOR_TXT_WITH_IMG_ICON:
313                 break;
314         case INDICATOR_DIGIT_ICON:
315                 icon->img_obj.obj = _img_icon_add(win, icon);
316                 break;
317         default:
318                 _E("Icon type check error!");
319                 return EINA_FALSE;
320         }
321         icon->obj_exist = EINA_TRUE;
322
323         return EINA_TRUE;
324 }
325
326
327
328 Eina_Bool icon_del(icon_s *icon)
329 {
330         Evas_Object *icon_obj;
331         retif(icon == NULL, EINA_FALSE, "Invalid parameter!");
332
333         _reset_on_timer_icon_animation(icon);
334
335         if (icon->obj_exist != EINA_FALSE) {
336                 if (icon->img_obj.obj) {
337                         icon_obj =
338                                 evas_object_data_get(icon->img_obj.obj, DATA_KEY_IMG_ICON);
339                         evas_object_del(icon_obj);
340                         evas_object_del(icon->img_obj.obj);
341                         icon->img_obj.obj = NULL;
342                 }
343         }
344         return EINA_TRUE;
345 }
346
347
348
349 /******************************************************************************
350  *
351  * Static functions : util functions - check priority
352  *
353  *****************************************************************************/
354
355 static int _show_others_in_same_priority(icon_s *icon)
356 {
357         icon_s *wish_add_icon;
358         int area = icon->area;
359         retif(icon == NULL, FAIL, "Invalid parameter!");
360
361         wish_add_icon = list_try_to_find_icon_to_show(icon->area, icon->priority);
362         if (wish_add_icon == NULL)
363         {
364                 return OK;
365         }
366
367         if (box_exist_icon(wish_add_icon))
368         {
369                 /* Already shown icon */
370                 return OK;
371         }
372
373         if(area ==INDICATOR_ICON_AREA_NOTI)
374         {
375                 box_pack_append(wish_add_icon);
376         }
377         else
378         {
379                 box_pack(wish_add_icon);
380         }
381
382         return OK;
383 }
384
385
386
387 static int _hide_others_in_view_list(icon_s *icon)
388 {
389         icon_s *wish_remove_icon = NULL;
390         retif(icon == NULL, FAIL, "Invalid parameter!");
391
392         if (INDICATOR_ICON_AREA_SYSTEM == icon->area || INDICATOR_ICON_AREA_NOTI == icon->area || INDICATOR_ICON_AREA_MINICTRL == icon->area)
393         {
394                 Icon_AddType ret;
395
396                 /* In Case of Nonfixed icon, remove same or
397                  * lower priority icon. Check count of non-fixed view list
398                  * to insert icon
399                  */
400                 ret = box_is_enable_to_insert_in_non_fixed_list(icon);
401                 icon->wish_to_show = EINA_TRUE;
402                 list_update(icon);
403
404                 switch (ret) {
405                 case CAN_ADD_WITH_DEL_NOTI:
406                         wish_remove_icon = list_try_to_find_icon_to_remove(INDICATOR_ICON_AREA_NOTI,0);
407                         box_unpack(wish_remove_icon);
408
409                         retif(wish_remove_icon == NULL, FAIL, "Unexpected Error : CAN_ADD_WITH_DEL_NOTI");
410                         break;
411                 case CAN_ADD_WITH_DEL_SYSTEM:
412                         wish_remove_icon = list_try_to_find_icon_to_remove(INDICATOR_ICON_AREA_SYSTEM,0);
413
414                         box_unpack(wish_remove_icon);
415                         retif(wish_remove_icon == NULL, FAIL, "Unexpected Error : CAN_ADD_WITH_DEL_SYSTEM");
416                         break;
417                 case CAN_ADD_WITH_DEL_MINICTRL:
418                         wish_remove_icon = list_try_to_find_icon_to_remove(INDICATOR_ICON_AREA_MINICTRL,0);
419
420                         box_unpack(wish_remove_icon);
421                         retif(wish_remove_icon == NULL, FAIL, "Unexpected Error : CAN_ADD_WITH_DEL_MINICTRL");
422                         break;
423                 case CAN_ADD_WITHOUT_DEL:
424                         break;
425                 case CANNOT_ADD:
426                         return FAIL;
427                         break;
428                 }
429
430                 return OK;
431         }
432         else if (INDICATOR_ICON_AREA_FIXED == icon->area)
433         {
434                 /* In Case of fixed icon, remove same priority icon */
435                 wish_remove_icon = list_try_to_find_icon_to_remove(INDICATOR_ICON_AREA_FIXED,icon->priority);
436
437                 /* First icon in the priority */
438                 if (wish_remove_icon == NULL)
439                 {
440                         return OK;
441                 }
442
443                 /* Already shown icon */
444                 if (wish_remove_icon == icon)
445                 {
446                         return FAIL;
447                 }
448
449                 icon->wish_to_show = EINA_TRUE;
450                 list_update(icon);
451
452                 /* Wish_remove_icon is always_top icon */
453                 if (wish_remove_icon->always_top)
454                 {
455                         return FAIL;
456                 }
457
458                 /* Other Icon of Same Priority should remove in view list */
459                 box_unpack(wish_remove_icon);
460         }
461
462         return OK;
463 }
464
465
466
467 /******************************************************************************
468  *
469  * Util Functions : external
470  *
471  *****************************************************************************/
472
473 #if 0
474 int icon_width_set(icon_s *icon)
475 {
476         return 0;
477 }
478 #endif
479
480
481 static int _icon_update(icon_s *icon)
482 {
483         struct appdata *ad = NULL;
484         Evas_Object *img_eo;
485         char buf[PATH_MAX];
486
487         retif(icon == NULL || icon->ad == NULL, FAIL, "Invalid parameter!");
488         ad = icon->ad;
489
490         memset(buf, 0x00, sizeof(buf));
491
492         if (icon->type == INDICATOR_IMG_ICON || icon->type == INDICATOR_TXT_WITH_IMG_ICON || icon->type == INDICATOR_DIGIT_ICON) {
493                 if (icon->area== INDICATOR_ICON_AREA_FIXED) {
494                         if(icon->type == INDICATOR_DIGIT_ICON && icon->digit_area == DIGIT_DOZENS) {
495                                 elm_layout_file_set(icon->img_obj.obj, util_get_res_file_path(ICON_THEME_FILE), "elm/indicator/icon/dozen_digit");
496                         } else {
497                                 elm_layout_file_set(icon->img_obj.obj, util_get_res_file_path(ICON_THEME_FILE), "elm/indicator/icon/base");
498                         }
499                 } else {
500                         if(util_check_noti_ani(icon->img_obj.data)) {
501                                 elm_layout_file_set(icon->img_obj.obj, util_get_res_file_path(ICON_NONFIXED_THEME_ANI_FILE), "elm/indicator/icon/base");
502                         } else{
503                                 elm_layout_file_set(icon->img_obj.obj, util_get_res_file_path(ICON_NONFIXED_THEME_FILE), "elm/indicator/icon/base");
504                         }
505                 }
506
507                 img_eo = evas_object_data_get(icon->img_obj.obj, DATA_KEY_IMG_ICON);
508
509                 util_start_noti_ani(icon);
510
511                 /* Check absolute path */
512                 retif(icon->img_obj.data == NULL, FAIL,"Invalid parameter!");
513
514                 if (strncmp(icon->img_obj.data, "/", 1) != 0) {
515                         snprintf(buf, sizeof(buf), "%s/%s", util_get_icon_dir(),icon->img_obj.data);
516                         elm_image_file_set(img_eo, buf, NULL);
517                 } else {
518                         retif(icon->img_obj.data[0] == '\0', FAIL,"Invalid parameter!");
519                         elm_image_file_set(img_eo, icon->img_obj.data, NULL);
520                 }
521
522                 if (icon->img_obj.width >= 0 && icon->img_obj.height>=0) {
523                         evas_object_size_hint_min_set(img_eo,
524                                 ELM_SCALE_SIZE(icon->img_obj.width),
525                                 ELM_SCALE_SIZE(icon->img_obj.height));
526                 } else {
527                         evas_object_size_hint_min_set(img_eo, ELM_SCALE_SIZE(DEFAULT_ICON_WIDTH), ELM_SCALE_SIZE(DEFAULT_ICON_HEIGHT));
528                 }
529         }
530
531         if (icon->area == INDICATOR_ICON_AREA_SYSTEM) {
532                 int bDisplay = 0;
533                 bDisplay = 1;
534                 if(ad->opacity_mode == INDICATOR_OPACITY_TRANSPARENT && bDisplay == 1) {
535                         util_send_status_message_start(ad,2.5);
536                 }
537         }
538
539         return OK;
540 }
541
542
543
544 void icon_show(icon_s *icon)
545 {
546         struct appdata *ad = NULL;
547
548         ret_if(!icon);
549         ret_if(!(icon->ad));
550
551         ad = (struct appdata *)icon->ad;
552
553         if (icon->obj_exist != EINA_FALSE) {
554                 if (icon->priority == INDICATOR_PRIORITY_NOTI_2) {
555                         box_unpack(icon);
556                         box_pack(icon);
557                         box_update_display(&(ad->win));
558                 } else {
559                         _icon_update(icon);
560                 }
561         }
562
563         if (_hide_others_in_view_list(icon) == FAIL) {
564                 return;
565         }
566
567         box_pack(icon);
568
569         box_update_display(&(ad->win));
570 }
571
572 void icon_hide(icon_s *icon)
573 {
574         int ret;
575
576         retif(icon == NULL, , "Invalid parameter!");
577         struct appdata *ad = (struct appdata *)icon->ad;
578
579         icon->wish_to_show = EINA_FALSE;
580
581         if (icon->exist_in_view == EINA_TRUE) {
582                 ret = box_unpack(icon);
583
584                 if (ret == FAIL)
585                         SECURE_ERR("Failed to unpack %s!", icon->name);
586
587                 _show_others_in_same_priority(icon);
588
589                 box_update_display(&(ad->win));
590
591         }
592 }
593
594
595 #if 0
596 void icon_event_count_set(int count, void *data)
597 {
598         static int _cnt = -1;
599         char buf[1024];
600
601         retif(data == NULL, , "Cannot get layout!");
602
603         if (_cnt != count) {
604                 memset(buf, 0x00, sizeof(buf));
605                 if (count) {
606                         snprintf(buf, sizeof(buf), "%d", count);
607                         util_signal_emit(data,"badge,show,1","elm.image.badge");
608                 } else {
609                         util_signal_emit(data,"badge,hide,1","elm.image.badge");
610                 }
611
612                 util_part_text_emit(data,"elm.text.badge", buf);
613                 _cnt = count;
614         }
615 }
616 #endif
617
618
619 unsigned int icon_get_update_flag(void)
620 {
621         return update_icon_flag;
622 }
623
624
625
626 void icon_set_update_flag(unsigned int val)
627 {
628         DBG("SET UPDATE FLAG %d",val);
629         update_icon_flag = val;
630 }
631
632
633
634 void icon_reset_list(void)
635 {
636         int system_cnt = box_get_count(SYSTEM_LIST);
637
638         if (system_cnt > box_get_enabled_system_count()) {
639                 while(system_cnt > box_get_enabled_system_count()) {
640                         icon_s *wish_remove_icon = NULL;
641                         wish_remove_icon = list_try_to_find_icon_to_remove(INDICATOR_ICON_AREA_SYSTEM, 0);
642
643                         if (wish_remove_icon == NULL) {
644                                 break;
645                         }
646
647                         box_unpack(wish_remove_icon);
648                         system_cnt = box_get_count(SYSTEM_LIST);
649                         SECURE_DBG("system remove %s %d",wish_remove_icon->name,system_cnt);
650                 }
651         } else {
652                 while (system_cnt < box_get_enabled_system_count()) {
653                         icon_s *wish_add_icon = NULL;
654                         wish_add_icon = list_try_to_find_icon_to_show(INDICATOR_ICON_AREA_SYSTEM, 0);
655                         if (wish_add_icon == NULL) {
656                                 break;
657                         }
658
659                         if (box_exist_icon(wish_add_icon)) {
660                                 break;
661                         }
662
663                         box_pack_append(wish_add_icon);
664                         system_cnt = box_get_count(SYSTEM_LIST);
665                         SECURE_DBG("system insert %s %d",wish_add_icon->name,system_cnt);
666                         if(system_cnt == box_get_enabled_system_count()) {
667                                 SECURE_DBG("quit adding %d %d",system_cnt,box_get_enabled_system_count());
668                                 break;
669                         }
670                 }
671         }
672
673         int minictrl_cnt = box_get_count(MINICTRL_LIST);
674
675         if (minictrl_cnt > box_get_minictrl_list()) {
676                 DBG("11 minictrl_cnt : %d //  box_get_minictrl_list : %d", minictrl_cnt, box_get_minictrl_list());
677                 while (minictrl_cnt > box_get_minictrl_list()) {
678                         DBG("22 minictrl_cnt : %d //  box_get_minictrl_list : %d", minictrl_cnt, box_get_minictrl_list());
679                         icon_s *wish_remove_icon = NULL;
680                         wish_remove_icon = list_try_to_find_icon_to_remove(INDICATOR_ICON_AREA_MINICTRL,0);
681
682                         if (wish_remove_icon == NULL) {
683                                 DBG("icon_reset_list NULL!");
684                                 break;
685                         }
686
687                         box_unpack(wish_remove_icon);
688                         minictrl_cnt = box_get_count(MINICTRL_LIST);
689                         SECURE_DBG("minictrl remove %s %d",wish_remove_icon->name,minictrl_cnt);
690                 }
691         } else {
692                 while (minictrl_cnt < box_get_minictrl_list()) {
693                         icon_s *wish_add_icon = NULL;
694                         wish_add_icon = list_try_to_find_icon_to_show(INDICATOR_ICON_AREA_MINICTRL, 0);
695                         if (wish_add_icon == NULL) {
696                                 break;
697                         }
698
699                         if (box_exist_icon(wish_add_icon)) {
700                                 break;
701                         }
702
703                         box_pack_append(wish_add_icon);
704                         minictrl_cnt = box_get_count(MINICTRL_LIST);
705                         SECURE_DBG("minictrl insert %s %d",wish_add_icon->name,minictrl_cnt);
706                         if(minictrl_cnt==box_get_minictrl_list()) {
707                                 SECURE_DBG("quit adding %d %d", minictrl_cnt, box_get_minictrl_list());
708                                 break;
709                         }
710                 }
711         }
712
713         int noti_cnt = box_get_count(NOTI_LIST);
714
715         if (noti_cnt > box_get_enabled_noti_count()) {
716                 while (noti_cnt > box_get_enabled_noti_count()) {
717                         icon_s *wish_remove_icon = NULL;
718                         wish_remove_icon = list_try_to_find_icon_to_remove(INDICATOR_ICON_AREA_NOTI, 0);
719
720                         if (wish_remove_icon == NULL) {
721                                 break;
722                         }
723
724                         box_unpack(wish_remove_icon);
725                         noti_cnt = box_get_count(NOTI_LIST);
726                         SECURE_DBG("remove %s %d",wish_remove_icon->name,noti_cnt);
727                 }
728         } else {
729                 while (noti_cnt < box_get_enabled_noti_count()) {
730                         icon_s *wish_add_icon = NULL;
731                         wish_add_icon = list_try_to_find_icon_to_show(INDICATOR_ICON_AREA_NOTI, 0);
732                         if (wish_add_icon == NULL) {
733                                 break;
734                         }
735
736                         if (box_exist_icon(wish_add_icon)) {
737                                 break;
738                         }
739
740                         box_pack_append(wish_add_icon);
741                         noti_cnt = box_get_count(NOTI_LIST);
742                         SECURE_DBG("insert %s %d", wish_add_icon->name, noti_cnt);
743                         if(noti_cnt==box_get_enabled_noti_count()) {
744                                 SECURE_DBG("quit adding %d %d", noti_cnt, box_get_enabled_noti_count());
745                                 break;
746                         }
747                 }
748         }
749 }
750
751
752
753 static void _show_hide_more_noti(win_info* win, bool show)
754 {
755         int err = preference_set_boolean(INDICATOR_MORE_NOTI, show);
756         retm_if(err != PREFERENCE_ERROR_NONE, "preference_set_boolean failed: %s", get_error_message(err));
757 }
758
759 void icon_handle_more_notify_icon(win_info* win)
760 {
761         retif(win == NULL, , "Invalid parameter!");
762         DBG("icon_handle_more_notify_icon called !!");
763 /*      int system_cnt = box_get_count(SYSTEM_LIST);
764         int minictrl_cnt = box_get_count(MINICTRL_LIST);
765         int noti_cnt = list_get_noti_count();
766
767         DBG("System count : %d, Minictrl count : %d, Notification count : %d", system_cnt, minictrl_cnt, noti_cnt);
768         if(win->type == INDICATOR_WIN_PORT)
769         {
770                 DBG("PORT :: %d", (system_cnt + minictrl_cnt + noti_cnt));
771                 if((system_cnt + minictrl_cnt + noti_cnt) > MAX_NOTI_ICONS_PORT)
772                 {
773                         _show_hide_more_noti(win, true);
774                         DBG("PORT :: handle_more_notify_show");
775                 }
776                 else
777                 {*/
778                         _show_hide_more_noti(win, false);
779                         DBG("PORT :: handle_more_notify_hide");
780                 /*}
781         }*/
782 }
783
784
785
786 void* icon_util_make(void* input)
787 {
788         icon_s *icon = (icon_s *)input;
789
790         retif(input == NULL,NULL, "Invalid parameter!");
791
792         icon_s *obj = NULL;
793         obj = calloc(1, sizeof(icon_s));
794
795         if (obj) {
796                 memset(obj, 0, sizeof(icon_s));
797                 memcpy(obj,input,sizeof(icon_s));
798                 obj->name = strdup(icon->name);
799         }
800
801         return obj;
802 }
803
804
805
806 /* End of file */