[Tizen] indicator : disable indicator 85/172985/2 accepted/tizen/unified/20180328.005949 submit/tizen/20180319.053649
authorWonsik, Jung <sidein@samsung.com>
Tue, 6 Mar 2018 02:24:44 +0000 (11:24 +0900)
committerWonsik, Jung <sidein@samsung.com>
Mon, 19 Mar 2018 06:59:19 +0000 (15:59 +0900)
Change-Id: I16ee2eb94d03ee49e68ac1a75fcddb3d7e4b6b74

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