From ce3a831b2a1e33f03fe63a53c02b0ca3e4ad036a Mon Sep 17 00:00:00 2001 From: Hyunho Kang Date: Thu, 17 Aug 2017 17:23:06 +0900 Subject: [PATCH] Set viewer visibility when start app Change-Id: I02467606b40683fdc562ac2aac8187d4ccc50b69 Signed-off-by: Hyunho Kang --- src/appcore-watch.c | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/appcore-watch.c b/src/appcore-watch.c index 4e835f6..410233a 100755 --- a/src/appcore-watch.c +++ b/src/appcore-watch.c @@ -1218,7 +1218,10 @@ static Eina_Bool __show_cb(void *data, int type, void *event) _D("show %d %d", (unsigned int)ev->win, (unsigned int)ev->data[0]); - __do_app(WE_RESUME, &priv, NULL); + if (priv.viewer_visibility == AUL_SCREEN_STATUS_RESUME) + __do_app(WE_RESUME, &priv, NULL); + else + _D("viewer is not resumed, do not resume watch"); return ECORE_CALLBACK_RENEW; } @@ -1284,6 +1287,7 @@ static int __before_loop(struct watch_priv *watch, int argc, char **argv) bundle *kb = NULL; char *width_str = NULL; char *height_str = NULL; + char *viewer_visibility_str = NULL; int width = 360; int height = 360; @@ -1305,6 +1309,8 @@ static int __before_loop(struct watch_priv *watch, int argc, char **argv) if (kb) { bundle_get_str(kb, "WATCH_WIDTH", &width_str); bundle_get_str(kb, "WATCH_HEIGHT", &height_str); + bundle_get_str(kb, "WATCH_VIEWER_VISIBILITY", + &viewer_visibility_str); if (width_str) width = atoi(width_str); @@ -1312,6 +1318,9 @@ static int __before_loop(struct watch_priv *watch, int argc, char **argv) if (height_str) height = atoi(height_str); + if (viewer_visibility_str) + priv.viewer_visibility = atoi(viewer_visibility_str); + bundle_free(kb); } else { _E("failed to get launch argv"); -- 2.7.4