Support widget content info share 09/81309/5 accepted/tizen/3.0/ivi/20161028.123035 accepted/tizen/3.0/mobile/20161028.122336 accepted/tizen/3.0/tv/20161028.122620 accepted/tizen/3.0/wearable/20161028.122842 accepted/tizen/common/20161013.155702 accepted/tizen/ivi/20161013.000920 accepted/tizen/mobile/20161013.000844 accepted/tizen/tv/20161013.000856 accepted/tizen/wearable/20161013.000906 submit/tizen/20161012.155021 submit/tizen_3.0/20161028.062323 submit/tizen_3.0/20161028.082323 submit/tizen_3.0_common/20161104.104000
authorHyunho Kang <hhstark.kang@samsung.com>
Wed, 12 Oct 2016 10:33:35 +0000 (19:33 +0900)
committerHyunho Kang <hhstark.kang@samsung.com>
Wed, 12 Oct 2016 15:32:46 +0000 (00:32 +0900)
Change-Id: Ic8b4db04bf4aba55006bb38dca0d59b001de644b
Signed-off-by: Hyunho Kang <hhstark.kang@samsung.com>
src/widget_app.c

index c3edd63..243908a 100755 (executable)
@@ -759,6 +759,30 @@ static void __add_climsg()
        ecore_event_handler_add(ECORE_WL_EVENT_WINDOW_CONFIGURE, __configure_cb, NULL);
 }
 
+static void __get_content(bundle *b)
+{
+       char *instance_id = NULL;
+       widget_context_s *cxt = NULL;
+
+       bundle_get_str(b, AUL_K_WIDGET_INSTANCE_ID, &instance_id);
+       if (!instance_id)
+               return;
+
+       cxt = __find_context_by_id(instance_id);
+       if (!cxt) {
+               _E("can not find instance id:%s", instance_id);
+               return;
+       }
+
+       if (cxt->content) {
+               bundle_add_str(b, AUL_K_WIDGET_CONTENT_INFO, cxt->content);
+               _D("content info of %s found", cxt->id);
+       } else {
+               bundle_add_str(b, AUL_K_WIDGET_CONTENT_INFO, "");
+               _D("empty content info added");
+       }
+}
+
 static int __aul_handler(aul_type type, bundle *b, void *data)
 {
        char *caller = NULL;
@@ -785,6 +809,9 @@ static int __aul_handler(aul_type type, bundle *b, void *data)
        case AUL_TERMINATE:
                widget_app_exit();
                break;
+       case AUL_WIDGET_CONTENT:
+               __get_content(b);
+               break;
        default:
                break;
        }