[Tizen] indicator : disable indicator 01/175201/1
authorhuiyu.eun <huiyu.eun@samsung.com>
Mon, 9 Apr 2018 07:54:14 +0000 (16:54 +0900)
committerhuiyu.eun <huiyu.eun@samsung.com>
Mon, 9 Apr 2018 07:54:15 +0000 (16:54 +0900)
This reverts commit b19e0e06d1f7e503d6a07fc26b2ee14176ea4706.

Change-Id: Ic31afd381b7edd4071f1e129908968b8ea8f39eb
Signed-off-by: huiyu.eun <huiyu.eun@samsung.com>
dali/internal/window-system/tizen-wayland/ecore-wl2/window-impl-ecore-wl2.cpp

index 4c68f02..269eb1a 100644 (file)
@@ -475,6 +475,9 @@ void Window::ShowIndicator( Dali::Window::IndicatorVisibleMode visibleMode )
 
     mIndicatorVisible = visibleMode;
 
+    //temp code TODO : need to re-imple dali indicator for EFL 1.20
+    mIndicatorVisible = Dali::Window::INVISIBLE;
+
     if ( mIndicatorVisible == Dali::Window::VISIBLE )
     {
       // when the indicator is visible, set proper mode for indicator server according to bg mode
@@ -536,7 +539,8 @@ void Window::SetClass(std::string name, std::string klass)
 
 Window::Window()
 : mSurface( NULL ),
-  mIndicatorVisible( Dali::Window::VISIBLE ),
+  //temp code TODO : need to re-imple dali indicator for EFL 1.20
+  mIndicatorVisible( Dali::Window::INVISIBLE ),
   mIndicatorIsShown( false ),
   mShowRotatedIndicatorOnClose( false ),
   mStarted( false ),
@@ -629,6 +633,10 @@ void Window::Initialize(const PositionSize& positionSize, const std::string& nam
 
 void Window::DoShowIndicator( Dali::Window::WindowOrientation lastOrientation )
 {
+  // temp code TODO : to implementation for EFL 1.20
+  if ( mIndicatorVisible == Dali::Window::INVISIBLE )
+    return;
+
   if( mIndicator == NULL )
   {
     if( mIndicatorVisible != Dali::Window::INVISIBLE )
@@ -977,7 +985,9 @@ void Window::RotationDone( int orientation, int width, int height )
 
 void Window::SetIndicatorVisibleMode( Dali::Window::IndicatorVisibleMode mode )
 {
-  mIndicatorVisible = mode;
+  // temp code TODO : need to re-imple dali indicator for EFL 1.20
+  //mIndicatorVisible = mode;
+  mIndicatorVisible = Dali::Window::INVISIBLE ;
 }
 
 unsigned int Window::GetSupportedAuxiliaryHintCount() const