summaryrefslogtreecommitdiff
path: root/daemon/notifications/ticker.c
blob: 36b45e3a70a91a23c1fd842a74eb3bcac15b6781 (plain)
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
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
/*
 * Copyright 2012  Samsung Electronics Co., Ltd
 *
 * Licensed under the Flora License, Version 1.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *  http://floralicense.org/license/
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

#include <Elementary.h>
#include <Ecore_X.h>
#include <appcore-common.h>
#include <vconf.h>
#include <appsvc.h>
#include <app_service.h>
#include <notification.h>
#include <time.h>
#include <feedback.h>

#include "quickpanel-ui.h"
#include "common.h"
#include "noti.h"
#include "noti_win.h"

#define QP_TICKER_DURATION	5
#define QP_TICKER_DETAIL_DURATION 6

#define TICKER_MSG_LEN				1024
#define DEFAULT_ICON ICONDIR		"/quickpanel_icon_default.png"

#define FORMAT_1LINE "<font_size=29><color=#BABABA>%s</color></font>"
#define FORMAT_2LINE "<font_size=26><color=#BABABA>%s</color></font><br><font_size=29><color=#F4F4F4>%s</color></font>"
#define FORMAT_2LINE_SINGLE "<font_size=26><color=#BABABA>%s</color></font><br><font_size=29><color=#F4F4F4>%s %s</color></font>"
#define FORMAT_2LINE_MULTI "<font_size=26><color=#BABABA>%s</color></font><br><font_size=29><color=#F4F4F4>%s %s</color></font>"

static Evas_Object *g_window;
static Evas_Object *g_ticker;
static Ecore_Timer *g_timer;
static int g_noti_height;

static int quickpanel_ticker_init(void *data);
static int quickpanel_ticker_fini(void *data);
static int quickpanel_ticker_enter_hib(void *data);
static int quickpanel_ticker_leave_hib(void *data);
static void quickpanel_ticker_reflesh(void *data);

QP_Module ticker = {
	.name = "ticker",
	.init = quickpanel_ticker_init,
	.fini = quickpanel_ticker_fini,
	.hib_enter = quickpanel_ticker_enter_hib,
	.hib_leave = quickpanel_ticker_leave_hib,
	.lang_changed = NULL,
	.refresh = quickpanel_ticker_reflesh
};

static int latest_inserted_time;

/*****************************************************************************
 *
 * (Static) Util functions
 *
 *****************************************************************************/
static void _quickpanel_ticker_clicked_cb(void *data, Evas_Object *obj,
			const char *emission, const char *source) {
	int ret = -1;
	char *pkgname = NULL;
	char *caller_pkgname = NULL;
	bundle *args = NULL;
	bundle *group_args = NULL;
	bundle *single_service_handle = NULL;
	bundle *multi_service_handle = NULL;
	int flags = 0, group_id = 0, priv_id = 0, count = 0, flag_launch = 0,
			flag_delete = 0;
	notification_type_e type = NOTIFICATION_TYPE_NONE;
	notification_h noti = NULL;
	int is_lock_launched = VCONFKEY_IDLE_UNLOCK;

	noti = data;
	retif(noti == NULL, , "Invalid parameter!");

	quickpanel_play_feedback();

	if (vconf_get_int(VCONFKEY_IDLE_LOCK_STATE, &is_lock_launched) == 0) {
		if (is_lock_launched == VCONFKEY_IDLE_LOCK) {
			return ;
		}
	}

	notification_get_pkgname(noti, &caller_pkgname);
	notification_get_application(noti, &pkgname);
	if (pkgname == NULL)
		pkgname = caller_pkgname;

	notification_get_id(noti, &group_id, &priv_id);
	notification_get_property(noti, &flags);
	notification_get_type(noti, &type);

	if (flags & NOTIFICATION_PROP_DISABLE_APP_LAUNCH)
		flag_launch = 0;
	else
		flag_launch = 1;

	if (flags & NOTIFICATION_PROP_DISABLE_AUTO_DELETE)
		flag_delete = 0;
	else
		flag_delete = 1;

	notification_get_execute_option(noti,
				NOTIFICATION_EXECUTE_TYPE_SINGLE_LAUNCH,
				NULL, &single_service_handle);
	notification_get_execute_option(noti,
				NOTIFICATION_EXECUTE_TYPE_MULTI_LAUNCH,
				NULL, &multi_service_handle);

	if (flag_launch == 1) {
		/* Hide quickpanel */
		quickpanel_close_quickpanel(true);

		char *text_count = NULL;
		notification_get_text(noti, NOTIFICATION_TEXT_TYPE_EVENT_COUNT, &text_count);

		if (text_count != NULL) {
			count = atoi(text_count);
		} else {
			count = 1;
		}

		if (single_service_handle != NULL && multi_service_handle == NULL) {
			ret = quickpanel_launch_app(NULL, single_service_handle);
			quickpanel_launch_app_inform_result(pkgname, ret);
		}
		if (single_service_handle == NULL && multi_service_handle != NULL) {
			ret = quickpanel_launch_app(NULL, multi_service_handle);
			quickpanel_launch_app_inform_result(pkgname, ret);
		}
		if (single_service_handle != NULL && multi_service_handle != NULL) {
			if (count <= 1) {
				ret = quickpanel_launch_app(NULL, single_service_handle);
				quickpanel_launch_app_inform_result(pkgname, ret);
			} else {
				ret = quickpanel_launch_app(NULL, multi_service_handle);
				quickpanel_launch_app_inform_result(pkgname, ret);
			}
		}
		if (single_service_handle == NULL && multi_service_handle == NULL) {
			notification_get_args(noti, &args, &group_args);

			if (count > 1 && group_args != NULL) {
				ret = quickpanel_launch_app(pkgname, group_args);
				quickpanel_launch_app_inform_result(pkgname, ret);
			} else {
				ret = quickpanel_launch_app(pkgname, args);
				quickpanel_launch_app_inform_result(pkgname, ret);
			}
		}
	}

	if (flag_delete == 1 && type == NOTIFICATION_TYPE_NOTI) {
		notification_delete_by_priv_id(caller_pkgname,
				NOTIFICATION_TYPE_NOTI,
				priv_id);
	}
}

static int _quickpanel_ticker_check_ticker_off(notification_h noti)
{
	char *pkgname = NULL;
	int ret = 0;
	int boolval = 0;

	notification_get_application(noti, &pkgname);

	if (pkgname == NULL)
		notification_get_pkgname(noti, &pkgname);

	if (pkgname == NULL)
		return 1;	/* Ticker is not displaying. */

	if (!strcmp(pkgname, VENDOR".message")) {
		ret = vconf_get_bool(
			VCONFKEY_SETAPPL_STATE_TICKER_NOTI_MESSAGES_BOOL,
			&boolval);
		if (ret == 0 && boolval == 0)
			return 1;
	} else if (!strcmp(pkgname, VENDOR".email")) {
		ret = vconf_get_bool(
			VCONFKEY_SETAPPL_STATE_TICKER_NOTI_EMAIL_BOOL,
			&boolval);
		if (ret == 0 && boolval == 0)
			return 1;
	} else if (!strcmp(pkgname, VENDOR".ims-syspopup")) {
		ret = vconf_get_bool(
				VCONFKEY_SETAPPL_STATE_TICKER_NOTI_IM_BOOL,
			&boolval);
		if (ret == 0 && boolval == 0)
			return 1;
	}

	/* Displaying ticker! */
	return 0;
}

static int _quickpanel_ticker_check_displaying_contents_off(notification_h noti)
{
	char *pkgname = NULL;
	int ret = 0;
	int boolval = 0;

	notification_get_application(noti, &pkgname);

	if (pkgname == NULL)
		notification_get_pkgname(noti, &pkgname);

	if (pkgname == NULL)
		return 0;	/* Ticker is not displaying. */

	if (!strcmp(pkgname, VENDOR".message")) {
		ret = vconf_get_bool(
			VCONFKEY_TICKER_NOTI_DISPLAY_CONTENT_MESSASGES,
			&boolval);
		if (ret == 0 && boolval == 0)
			return 1;
	} else if (!strcmp(pkgname, VENDOR".email")) {
		ret = vconf_get_bool(
			VCONFKEY_TICKER_NOTI_DISPLAY_CONTENT_EMAIL,
			&boolval);
		if (ret == 0 && boolval == 0)
			return 1;
	} else if (!strcmp(pkgname, VENDOR".ims-syspopup")) {
		ret = vconf_get_bool(
			VCONFKEY_TICKER_NOTI_DISPLAY_CONTENT_IM,
			&boolval);
		if (ret == 0 && boolval == 0)
			return 1;
	}

	/* Displaying ticker! */
	return 0;
}

static inline void __ticker_only_noti_del(notification_h noti)
{
	int applist = NOTIFICATION_DISPLAY_APP_ALL;

	retif(noti == NULL, ,"noti is null");

	notification_get_display_applist(noti, &applist);
	if (applist & NOTIFICATION_DISPLAY_APP_TICKER) {
		if (!(applist & NOTIFICATION_DISPLAY_APP_NOTIFICATION_TRAY)) {
			char *pkgname = NULL;
			int priv_id = 0;

			notification_get_pkgname(noti, &pkgname);
			notification_get_id(noti, NULL, &priv_id);
			notification_delete_by_priv_id(pkgname,
						NOTIFICATION_TYPE_NONE,
						priv_id);
		}
	}
}

static void _quickpanel_ticker_hide(void *data)
{
	if (g_ticker) {
		evas_object_hide(g_ticker);
		evas_object_del(g_ticker);
		g_ticker = NULL;
	}
}

static Eina_Bool _quickpanel_ticker_timeout_cb(void *data)
{
	DBG("");

	g_timer = NULL;

	_quickpanel_ticker_hide(data);

	return ECORE_CALLBACK_CANCEL;
}

static void _quickpanel_ticker_detail_hide_cb(void *data, Evas *e,
					Evas_Object *obj,
					void *event_info)
{
	DBG("");
	notification_h noti = (notification_h) data;

	if (g_timer) {
		ecore_timer_del(g_timer);
		g_timer = NULL;
	}

	retif(noti == NULL, , "Invalid parameter!");

	__ticker_only_noti_del(noti);
	notification_free(noti);
}

static void _quickpanel_ticker_detail_show_cb(void *data, Evas *e,
					Evas_Object *obj,
					void *event_info)
{
	DBG("");
}

static void _quickpanel_ticker_button_clicked_cb(void *data, Evas_Object *obj,
					void *event_info)
{
	DBG("");

	if (g_timer) {
		ecore_timer_del(g_timer);
		g_timer = NULL;
	}

	_quickpanel_ticker_hide(data);
}

static Evas_Object *_quickpanel_ticker_create_button(Evas_Object *parent,
						notification_h noti)
{
	Evas_Object *button = NULL;
	int ret = 0;
	int val = 0;

	retif(noti == NULL || parent == NULL, NULL, "Invalid parameter!");

	/* Check idle lock state */
	ret = vconf_get_int(VCONFKEY_IDLE_LOCK_STATE, &val);
	/* If Lock state, button is diabled */
	if (ret != 0 || val == VCONFKEY_IDLE_LOCK)
		return NULL;

	button = elm_button_add(parent);
	elm_object_style_set(button, "tickernoti");
	elm_object_text_set(button, _S("IDS_COM_BODY_CLOSE"));
	evas_object_smart_callback_add(button, "clicked",
				_quickpanel_ticker_button_clicked_cb, noti);

	return button;
}

static Evas_Object *_quickpanel_ticker_create_icon(Evas_Object *parent,
						notification_h noti)
{
	char *icon_path = NULL;
	Evas_Object *icon = NULL;

	retif(noti == NULL || parent == NULL, NULL, "Invalid parameter!");

	notification_get_image(noti, NOTIFICATION_IMAGE_TYPE_ICON, &icon_path);
	icon = elm_image_add(parent);

	if (icon_path == NULL
	    || (elm_image_file_set(icon, icon_path, NULL) == EINA_FALSE)) {
		elm_image_file_set(icon, DEFAULT_ICON, NULL);
		elm_image_resizable_set(icon, EINA_TRUE, EINA_TRUE);
	}

	return icon;
}

static inline char *_get_text(notification_h noti, notification_text_type_e text_type) {
	time_t time = 0;
	char *text = NULL;
	char buf[TICKER_MSG_LEN] = { 0, };

	if (notification_get_time_from_text(noti, text_type, &time) == NOTIFICATION_ERROR_NONE) {
		if ((int)time > 0) {
			quickpanel_noti_get_time(time, buf, sizeof(buf));
			text = buf;
		}
	} else {
		notification_get_text(noti, text_type, &text);
	}

	if (text != NULL)
		return elm_entry_utf8_to_markup(text);

	return NULL;
}

static char *_quickpanel_ticker_get_label_layout_default(notification_h noti)
{
	char buf[TICKER_MSG_LEN] = { 0, };
	int len = 0;
	char *domain = NULL;
	char *dir = NULL;
	char *title_utf8 = NULL;
	char *content_utf8 = NULL;
	char *event_count_utf8 = NULL;

	retif(noti == NULL, NULL, "Invalid parameter!");

	notification_get_text_domain(noti, &domain, &dir);
	if (domain != NULL && dir != NULL)
		bindtextdomain(domain, dir);

	title_utf8 = _get_text(noti, NOTIFICATION_TEXT_TYPE_TITLE);

	if (_quickpanel_ticker_check_displaying_contents_off(noti) == 1) {
		content_utf8 = _get_text(noti, NOTIFICATION_TEXT_TYPE_CONTENT_FOR_DISPLAY_OPTION_IS_OFF);
	}
	else {
		content_utf8 = _get_text(noti, NOTIFICATION_TEXT_TYPE_CONTENT);
	}

	event_count_utf8 = _get_text(noti, NOTIFICATION_TEXT_TYPE_EVENT_COUNT);

	if (event_count_utf8 == NULL) {
		if (title_utf8 && content_utf8) {
			len = snprintf(buf, sizeof(buf),FORMAT_2LINE, title_utf8, content_utf8);
		} else if (title_utf8) {
			len = snprintf(buf, sizeof(buf),FORMAT_1LINE, title_utf8);
		}
	} else {
		if (title_utf8 && content_utf8) {
			if (_quickpanel_ticker_check_displaying_contents_off(noti) == 1)
				len = snprintf(buf, sizeof(buf),FORMAT_2LINE, title_utf8, content_utf8);
			else
				len = snprintf(buf, sizeof(buf),FORMAT_2LINE_MULTI, title_utf8, event_count_utf8, content_utf8);
		} else if (title_utf8) {
			len = snprintf(buf, sizeof(buf),FORMAT_1LINE, title_utf8);
		}
	}

	if (title_utf8)
		free(title_utf8);

	if (content_utf8)
		free(content_utf8);

	if (event_count_utf8)
		free(event_count_utf8);

	if (len > 0)
		return strdup(buf);

	return NULL;
}

static char *_quickpanel_ticker_get_label_layout_single(notification_h noti)
{
	char buf[TICKER_MSG_LEN] = { 0, };
	int len = 0;
	char *domain = NULL;
	char *dir = NULL;
	char *title_utf8 = NULL;
	char *content_utf8 = NULL;
	char *info_1_utf8 = NULL;
	char *info_sub_1_utf8 = NULL;

	retif(noti == NULL, NULL, "Invalid parameter!");

	notification_get_text_domain(noti, &domain, &dir);
	if (domain != NULL && dir != NULL)
		bindtextdomain(domain, dir);

	title_utf8 = _get_text(noti, NOTIFICATION_TEXT_TYPE_TITLE);

	if (_quickpanel_ticker_check_displaying_contents_off(noti) == 1) {
		content_utf8 = _get_text(noti, NOTIFICATION_TEXT_TYPE_CONTENT_FOR_DISPLAY_OPTION_IS_OFF);
	}
	else {
		content_utf8 = _get_text(noti, NOTIFICATION_TEXT_TYPE_CONTENT);
	}

	info_1_utf8 = _get_text(noti, NOTIFICATION_TEXT_TYPE_INFO_1);
	info_sub_1_utf8 = _get_text(noti, NOTIFICATION_TEXT_TYPE_INFO_SUB_1);

	if (info_1_utf8 == NULL) {
		if (title_utf8 && content_utf8) {
			len = snprintf(buf, sizeof(buf),FORMAT_2LINE, title_utf8, content_utf8);
		} else if (title_utf8) {
			len = snprintf(buf, sizeof(buf),FORMAT_1LINE, title_utf8);
		}
	} else {
		if (info_sub_1_utf8) {
			if (content_utf8)
				len = snprintf(buf, sizeof(buf), FORMAT_2LINE_SINGLE, content_utf8, info_1_utf8, info_sub_1_utf8);
			else if (title_utf8)
				len = snprintf(buf, sizeof(buf), FORMAT_2LINE_SINGLE, title_utf8, info_1_utf8, info_sub_1_utf8);
		} else {
			if (content_utf8)
				len = snprintf(buf, sizeof(buf), FORMAT_2LINE, content_utf8, info_1_utf8);
			else if (title_utf8)
				len = snprintf(buf, sizeof(buf), FORMAT_2LINE, title_utf8, info_1_utf8);
		}
	}

	if (title_utf8)
		free(title_utf8);

	if (content_utf8)
		free(content_utf8);

	if (info_1_utf8)
		free(info_1_utf8);

	if (info_sub_1_utf8)
		free(info_sub_1_utf8);

	if (len > 0)
		return strdup(buf);

	return NULL;
}

static char *_quickpanel_ticker_get_label(notification_h noti)
{
	char *result = NULL;
	notification_ly_type_e layout;

	retif(noti == NULL, NULL, "Invalid parameter!");

	notification_get_layout(noti, &layout);

	if (_quickpanel_ticker_check_displaying_contents_off(noti) == 1) {
		result = _quickpanel_ticker_get_label_layout_default(noti);
	} else if (layout == NOTIFICATION_LY_NOTI_EVENT_SINGLE) {
		result = _quickpanel_ticker_get_label_layout_single(noti);
	} else {
		result = _quickpanel_ticker_get_label_layout_default(noti);
	}

	return result;
}

static void _noti_hide_cb(void *data, Evas_Object *obj,
			const char *emission, const char *source)
{
	DBG("");

	if (g_timer) {
		ecore_timer_del(g_timer);
		g_timer = NULL;
	}

	_quickpanel_ticker_hide(data);
}

static Evas_Object *_quickpanel_ticker_create_tickernoti(void *data)
{
	notification_h noti = (notification_h) data;
	Evas_Object *tickernoti = NULL;
	Evas_Object *icon = NULL;
	Evas_Object *detail = NULL;
	Evas_Object *button = NULL;
	char *buf = NULL;
	const char *data_win_height = NULL;
	int noti_height = 0;

	retif(noti == NULL, NULL, "Invalid parameter!");

	tickernoti = noti_win_add(NULL);
	retif(tickernoti == NULL, NULL, "Failed to add elm tickernoti.");

	detail = elm_layout_add(tickernoti);
	if (!detail) {
		ERR("Failed to get detailview.");
		evas_object_del(tickernoti);
		return NULL;
	}
	elm_layout_theme_set(detail, "tickernoti", "base", "default");
	elm_object_signal_callback_add(detail, "request,hide", "",
				_noti_hide_cb, noti);
	elm_object_signal_callback_add(detail, "clicked", "",
			_quickpanel_ticker_clicked_cb, noti);

	data_win_height = (char *)elm_layout_data_get(detail, "height");
	if (data_win_height != NULL && elm_config_scale_get() > 0.0)
		noti_height = (int)(elm_config_scale_get()
					* atoi(data_win_height));
	evas_object_size_hint_min_set(detail, 1, noti_height);
	g_noti_height = noti_height;

	noti_win_content_set(tickernoti, detail);

	icon = _quickpanel_ticker_create_icon(detail, noti);
	if (icon != NULL)
		elm_object_part_content_set(detail, "icon", icon);

	button = _quickpanel_ticker_create_button(detail, noti);
	if (button != NULL)
		elm_object_part_content_set(detail, "button", button);

	buf = _quickpanel_ticker_get_label(noti);
	if (buf != NULL) {
		elm_object_part_text_set(detail, "elm.text", buf);
		free(buf);
	}

	/* Use style "default" for detailview mode and
	 * "info" for text only mode
	 */
	elm_object_style_set(tickernoti, "default");

	return tickernoti;
}

static int _quickpanel_ticker_get_angle(void *data)
{
	struct appdata *ad = (struct appdata *)data;
	Ecore_X_Window xwin, root;
	int ret = 0, angle = 0, count = 0;
	unsigned char *prop_data = NULL;

	xwin = elm_win_xwindow_get(ad->win);
	root = ecore_x_window_root_get(xwin);

	ret = ecore_x_window_prop_property_get(root,
				ECORE_X_ATOM_E_ILLUME_ROTATE_ROOT_ANGLE,
				ECORE_X_ATOM_CARDINAL, 32,
				&prop_data, &count);

	if (ret && prop_data) {
		memcpy(&angle, prop_data, sizeof(int));

		if (prop_data)
			free(prop_data);

		return angle;
	} else {
		ERR("Fail to get angle");
		if (prop_data)
			free(prop_data);

		return -1;
	}
}

static void _quickpanel_ticker_update_geometry_on_rotation(void *data, int *x, int *y, int *w, int *h) {
	int angle = 0;

	if (!data)
		return;
	angle = _quickpanel_ticker_get_angle(data);
	Evas_Coord root_w, root_h;

	/*
	 * manually calculate win_tickernoti_indi window position & size
	 *  - win_indi is not full size window
	 */
	ecore_x_window_size_get(ecore_x_window_root_first_get(), &root_w, &root_h);

	// rotate win
	switch(angle)
	{
		case 90:
			*w = g_noti_height;
			*h = root_h;
			break;
		case 270:
			*w = g_noti_height;
			*h = root_h;
			*x = root_w - g_noti_height;
			break;
		case 180:
			*w = root_w;
			*h = g_noti_height;
			*y = root_h - g_noti_height;
			break;
		case 0:
		default:
			*w = root_w;
			*h = g_noti_height;
			break;
	}
	elm_win_rotation_set(g_ticker, angle);
}

static void _quickpanel_ticker_win_rotated(void *data) {
	retif(data == NULL, ,"data is NULL");
	struct appdata *ad = data;
	int x = 0, y = 0, w = 0, h = 0;

	_quickpanel_ticker_update_geometry_on_rotation(ad, &x, &y, &w, &h);

	if (g_ticker != NULL) {
		evas_object_move(g_ticker, x, y);
		evas_object_resize(g_ticker, w, h);
	}
}

static void _quickpanel_noti_media_feedback(notification_h noti) {

	retif(noti == NULL, ,"op_list is NULL");

	if (quickpanel_is_sound_enabled() == 1) {
		notification_sound_type_e nsound_type = NOTIFICATION_SOUND_TYPE_NONE;
		const char *nsound_path = NULL;
#ifdef VCONFKEY_SETAPPL_NOTI_MSG_RINGTONE_PATH_STR
		char *default_msg_tone = NULL;
#endif

		notification_get_sound(noti, &nsound_type, &nsound_path);
		DBG("Sound : %d, %s", nsound_type, nsound_path);

		switch (nsound_type) {
			case NOTIFICATION_SOUND_TYPE_USER_DATA:
				quickpanel_player_play(SOUND_TYPE_NOTIFICATION, nsound_path);
				break;
			case NOTIFICATION_SOUND_TYPE_DEFAULT:
#ifdef VCONFKEY_SETAPPL_NOTI_MSG_RINGTONE_PATH_STR
				default_msg_tone = vconf_get_str(VCONFKEY_SETAPPL_NOTI_MSG_RINGTONE_PATH_STR);

				if (default_msg_tone != NULL) {
					quickpanel_player_play(SOUND_TYPE_NOTIFICATION, default_msg_tone);
					free(default_msg_tone);
				} else {
					feedback_play_type(FEEDBACK_TYPE_SOUND, FEEDBACK_PATTERN_UNLOCK);
				}
#else
				feedback_play_type(FEEDBACK_TYPE_SOUND, FEEDBACK_PATTERN_UNLOCK);
#endif
				break;
			case NOTIFICATION_SOUND_TYPE_MAX:
			case NOTIFICATION_SOUND_TYPE_NONE:
				break;
		}
	}

	/* Play Vibration */
	notification_vibration_type_e nvibration_type =
		NOTIFICATION_VIBRATION_TYPE_NONE;
	const char *nvibration_path = NULL;

	notification_get_vibration(noti, &nvibration_type, &nvibration_path);
	DBG("Vibration : %d, %s", nvibration_type, nvibration_path);
	switch (nvibration_type) {
		case NOTIFICATION_VIBRATION_TYPE_USER_DATA:
		case 	NOTIFICATION_VIBRATION_TYPE_DEFAULT:
			feedback_play_type(FEEDBACK_TYPE_VIBRATION, FEEDBACK_PATTERN_GENERAL);
			break;
		case NOTIFICATION_VIBRATION_TYPE_MAX:
		case NOTIFICATION_VIBRATION_TYPE_NONE:
			break;
	}
}

static void _quickpanel_ticker_noti_detailed_changed_cb(void *data, notification_type_e type, notification_op *op_list, int num_op)
{
	notification_h noti = NULL;
	int flags = 0;
	int applist = NOTIFICATION_DISPLAY_APP_ALL;
	int ret = 0;
	int op_type = 0;
	int priv_id = 0;

	INFO("_quickpanel_ticker_noti_changed_cb");

	retif(op_list == NULL, ,"op_list is NULL");

	if (num_op == 1) {
		notification_op_get_data(op_list, NOTIFICATION_OP_DATA_TYPE, &op_type);
		notification_op_get_data(op_list, NOTIFICATION_OP_DATA_PRIV_ID, &priv_id);
		DBG("op_type:%d", op_type);
		DBG("op_priv_id:%d", priv_id);

		if (op_type == NOTIFICATION_OP_INSERT) {
			noti = notification_load(NULL, priv_id);
		} else if (op_type == NOTIFICATION_OP_UPDATE) {
			noti = notification_load(NULL, priv_id);
		} else {
			return ;
		}
	} else {
		return ;
	}

	retif(noti == NULL, ,"noti is NULL");

	if (op_type == NOTIFICATION_OP_INSERT || op_type == NOTIFICATION_OP_UPDATE) {
		_quickpanel_noti_media_feedback(noti);
	}

	notification_get_display_applist(noti, &applist);
	if (!(applist & NOTIFICATION_DISPLAY_APP_TICKER)) {
		DBG("No Ticker Msg");
		notification_free(noti);
		return ;
	}

	/* Check setting's event notification */
	ret = _quickpanel_ticker_check_ticker_off(noti);
	if (ret == 1) {
		INFO("Disable tickernoti ret : %d", ret);
		/* delete temporary here only ticker noti display item */
		__ticker_only_noti_del(noti);
		notification_free(noti);

		return;
	}

	/* Skip if previous ticker is still shown */
	if (g_ticker != NULL) {
		_quickpanel_ticker_hide(NULL);
	}

	/* Check tickernoti flag */
	notification_get_property(noti, &flags);

	if (flags & NOTIFICATION_PROP_DISABLE_TICKERNOTI) {
		INFO("NOTIFICATION_PROP_DISABLE_TICKERNOTI");
		__ticker_only_noti_del(noti);
		notification_free(noti);
	} else if (applist & NOTIFICATION_DISPLAY_APP_TICKER) {
		/* Display ticker */
		if (g_timer)
			ecore_timer_del(g_timer);

		g_ticker = _quickpanel_ticker_create_tickernoti(noti);
		if (g_ticker == NULL) {
			ERR("Fail to create tickernoti");
			__ticker_only_noti_del(noti);
			notification_free(noti);
			return;
		}

		g_timer = ecore_timer_add(QP_TICKER_DURATION,
				_quickpanel_ticker_timeout_cb, noti);

		_quickpanel_ticker_win_rotated(data);
		evas_object_show(g_ticker);

		evas_object_event_callback_add(g_ticker, EVAS_CALLBACK_SHOW,
					_quickpanel_ticker_detail_show_cb,
					g_ticker);
		evas_object_event_callback_add(g_ticker, EVAS_CALLBACK_HIDE,
					_quickpanel_ticker_detail_hide_cb,
					noti);
	}
}

/*****************************************************************************
 *
 * Util functions
 *
 *****************************************************************************/
static int quickpanel_ticker_init(void *data)
{
	struct appdata *ad = (struct appdata *)data;

	latest_inserted_time = time(NULL);
	g_window = ad->win;

	notification_register_detailed_changed_cb(_quickpanel_ticker_noti_detailed_changed_cb,
					data);

	return QP_OK;
}

static int quickpanel_ticker_fini(void *data)
{
	_quickpanel_ticker_hide(NULL);

	return QP_OK;
}

static int quickpanel_ticker_enter_hib(void *data)
{
	return QP_OK;
}

static int quickpanel_ticker_leave_hib(void *data)
{
	return QP_OK;
}

static void quickpanel_ticker_reflesh(void *data)
{
	retif(data == NULL, , "Invalid parameter!");

	if (g_ticker != NULL) {
		_quickpanel_ticker_win_rotated(data);
	}
}