Remove Deprecated APIs 64/25864/1
authorRichard Huang <r.huang@samsung.com>
Mon, 11 Aug 2014 10:58:22 +0000 (11:58 +0100)
committerRichard Huang <r.huang@samsung.com>
Mon, 11 Aug 2014 10:58:22 +0000 (11:58 +0100)
Change-Id: I9f70e6649fc6124d045420398fc16f9f7e0e00e6

adaptors/common/feedback/feedback-controller.cpp
adaptors/common/window-impl.cpp
adaptors/common/window-impl.h
adaptors/common/window.cpp
adaptors/public-api/window.h
adaptors/wayland/window-impl-wl.cpp
adaptors/x11/window-impl-x.cpp

index db59865..aa67853 100644 (file)
@@ -105,7 +105,6 @@ struct SignalFeedbackInfo
 {
   /**
    * Default constructor.
-   * @deprecated - moved into dali-adaptor FeedbackController.
    */
   SignalFeedbackInfo()
   :mHasHapticFeedbackInfo(false),
@@ -129,7 +128,6 @@ struct FeedbackStyleInfo
 {
   /**
    * Default constructor.
-   * @deprecated - moved into dali-adaptor FeedbackController.
    */
   FeedbackStyleInfo()
   {
index c8910b6..20c6bde 100644 (file)
@@ -265,23 +265,6 @@ void Window::SetIndicatorStyle( Dali::Window::IndicatorStyle style )
   mIndicatorStyle = style;
 }
 
-void Window::ShowIndicator( bool show )
-{
-  DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "%s\n", show?"SHOW":"HIDE" );
-  DALI_ASSERT_DEBUG(mOverlay);
-
-  if(show)
-  {
-    mIndicatorVisible = Dali::Window::VISIBLE;
-  }
-  else
-  {
-    mIndicatorVisible = Dali::Window::INVISIBLE;
-  }
-
-  DoShowIndicator( mIndicatorOrientation );
-}
-
 void Window::ShowIndicator( Dali::Window::IndicatorVisibleMode visibleMode )
 {
   DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "visible : %d\n", visibleMode );
index 428244c..d0ce07b 100644 (file)
@@ -88,11 +88,6 @@ public:
   /**
    * @copydoc Dali::Window::ShowIndicator()
    */
-  void ShowIndicator( bool show );
-
-  /**
-   * @copydoc Dali::Window::ShowIndicator()
-   */
   void ShowIndicator( Dali::Window::IndicatorVisibleMode visibleMode );
 
   /**
index 4883b8d..a918d57 100644 (file)
@@ -44,11 +44,6 @@ void Window::SetIndicatorStyle( IndicatorStyle style )
   GetImplementation(*this).SetIndicatorStyle( style );
 }
 
-void Window::ShowIndicator( bool show )
-{
-  GetImplementation(*this).ShowIndicator( show );
-}
-
 void Window::ShowIndicator( IndicatorVisibleMode visibleMode )
 {
   GetImplementation(*this).ShowIndicator( visibleMode );
index 82be3cd..218e150 100644 (file)
@@ -137,13 +137,6 @@ public:
 
   /**
    * @brief This sets whether the indicator bar should be shown or not.
-   * @param[in] show - true if the indicator bar should be shown
-   * @deprecated use "void ShowIndicator( IndicatorVisibleMode visibleMode )"
-   */
-  void ShowIndicator( bool show );
-
-  /**
-   * @brief This sets whether the indicator bar should be shown or not.
    * @param[in] visibleMode visible mode for indicator bar, VISIBLE in default
    */
   void ShowIndicator( IndicatorVisibleMode visibleMode );
index 808ae52..539fcd7 100644 (file)
@@ -153,23 +153,6 @@ void Window::SetIndicatorStyle( Dali::Window::IndicatorStyle style )
   mIndicatorStyle = style;
 }
 
-void Window::ShowIndicator( bool show )
-{
-  DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "%s\n", show?"SHOW":"HIDE" );
-  DALI_ASSERT_DEBUG(mOverlay);
-
-  if(show)
-  {
-    mIndicatorVisible = Dali::Window::VISIBLE;
-  }
-  else
-  {
-    mIndicatorVisible = Dali::Window::INVISIBLE;
-  }
-
-  DoShowIndicator( mIndicatorOrientation );
-}
-
 void Window::ShowIndicator( Dali::Window::IndicatorVisibleMode visibleMode )
 {
   DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "visible : %d\n", visibleMode );
index 0241a2a..9f7b158 100644 (file)
@@ -245,23 +245,6 @@ void Window::SetIndicatorStyle( Dali::Window::IndicatorStyle style )
   mIndicatorStyle = style;
 }
 
-void Window::ShowIndicator( bool show )
-{
-  DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "%s\n", show?"SHOW":"HIDE" );
-  DALI_ASSERT_DEBUG(mOverlay);
-
-  if(show)
-  {
-    mIndicatorVisible = Dali::Window::VISIBLE;
-  }
-  else
-  {
-    mIndicatorVisible = Dali::Window::INVISIBLE;
-  }
-
-  DoShowIndicator( mIndicatorOrientation );
-}
-
 void Window::ShowIndicator( Dali::Window::IndicatorVisibleMode visibleMode )
 {
   DALI_LOG_TRACE_METHOD_FMT( gWindowLogFilter, "visible : %d\n", visibleMode );