disable controlling indicator. 98/34398/1 tizen_3.0.2014.q4_common tizen_3.0.2015.q1_common accepted/tizen/common/20150127.100932 accepted/tizen/mobile/20150127.110946 accepted/tizen/tv/20150128.103620 accepted/tizen/wearable/20150127.105956 accepted/tizen/wearable/20150128.040857 submit/tizen/20150127.011226 submit/tizen_wearable/20150128.040454
authorBoram Park <boram1288.park@samsung.com>
Mon, 26 Jan 2015 09:56:23 +0000 (18:56 +0900)
committerBoram Park <boram1288.park@samsung.com>
Mon, 26 Jan 2015 13:37:14 +0000 (22:37 +0900)
Change-Id: Ic04690c07186e7ec28537ecf9df9ac3c48aa01b1
Signed-off-by: Boram Park <boram1288.park@samsung.com>
CMakeLists.txt
include/ug-manager.h
packaging/ui-gadget-1.spec
src/manager.c

index ed72a99..f0f69f5 100644 (file)
@@ -28,7 +28,7 @@ ADD_LIBRARY(${PROJECT_NAME} SHARED ${SRCS})
 
 SET(PKGS_CHECK_MODULES "glib-2.0 bundle dlog capi-appfw-application appsvc capi-appfw-app-manager ecore elementary libtzplatform-config")
 IF (with_x)
-       PKG_CHECK_MODULES(PKGS REQUIRED ${PKGS_CHECK_MODULES} utilX x11)
+       PKG_CHECK_MODULES(PKGS REQUIRED ${PKGS_CHECK_MODULES} x11)
 ENDIF(with_x)
 
 IF (with_wayland)
index 7c7e059..87de678 100644 (file)
 #ifndef __UG_MANAGER_H__
 #define __UG_MANAGER_H__
 
-#ifndef WAYLAND
-#include <utilX.h>
-#endif
-
 #include <Evas.h>
 #include "ug.h"
 
index e8e5113..6496b75 100644 (file)
@@ -16,7 +16,6 @@ BuildRequires:  pkgconfig(appcore-efl)
 BuildRequires:  pkgconfig(bundle)
 BuildRequires:  pkgconfig(dlog)
 %if %{with x}
-BuildRequires:  pkgconfig(utilX)
 BuildRequires:  pkgconfig(x11)
 %endif
 BuildRequires:  pkgconfig(appsvc)
index 5c9cbed..093b465 100644 (file)
@@ -26,7 +26,6 @@
 #include <glib.h>
 
 #ifndef WAYLAND
-#include <utilX.h>
 #include <X11/Xatom.h>
 #include <X11/Xutil.h>
 #include <Ecore_X.h>
@@ -406,50 +405,7 @@ static int ugman_indicator_overlap_update(enum ug_option opt)
 
 static int ugman_indicator_update(enum ug_option opt, enum ug_event event)
 {
-       int enable;
-       int cur_state;
-
-#ifndef WAYLAND
-       cur_state = utilx_get_indicator_state(ug_man.disp, ug_man.win_id);
-#else
-       cur_state = -1; //state is -1 (unknown)
-#endif
-
-       _DBG("indicator update opt(%d) cur_state(%d)", opt, cur_state);
-
-#ifndef ENABLE_UG_HANDLE_INDICATOR_HIDE
-       enable = 1;
-#else
-       switch (GET_OPT_INDICATOR_VAL(opt)) {
-               case UG_OPT_INDICATOR_ENABLE:
-                       if (event == UG_EVENT_NONE)
-                               enable = 1;
-                       else
-                               enable = cur_state ? 1 : 0;
-                       break;
-               case UG_OPT_INDICATOR_PORTRAIT_ONLY:
-                       enable = ug_man.is_landscape ? 0 : 1;
-                       break;
-               case UG_OPT_INDICATOR_LANDSCAPE_ONLY:
-                       enable = ug_man.is_landscape ? 1 : 0;
-                       break;
-               case UG_OPT_INDICATOR_DISABLE:
-                       enable = 0;
-                       break;
-               case UG_OPT_INDICATOR_MANUAL:
-                       return 0;
-               default:
-                       _ERR("update failed: Invalid opt(%d)", opt);
-                       return -1;
-       }
-#endif
-
-       if(cur_state != enable) {
-               _DBG("set indicator as %d", enable);
-#ifndef WAYLAND
-               utilx_enable_indicator(ug_man.disp, ug_man.win_id, enable);
-#endif
-       }
+       _ERR("controlling indicator is disabled");
 
        return 0;
 }