Revert "[Tizen] Revert "Support multiple window rendering""
[platform/core/uifw/dali-adaptor.git] / dali / public-api / adaptor-framework / window.cpp
index f2a8068..ea9e4ae 100644 (file)
@@ -19,6 +19,7 @@
 #include <dali/public-api/adaptor-framework/window.h>
 
 // INTERNAL INCLUDES
+#include <dali/public-api/actors/actor.h>
 #include <dali/internal/window-system/common/window-impl.h>
 #include <dali/internal/window-system/common/orientation-impl.h>
 
@@ -58,21 +59,29 @@ Window& Window::operator=(const Window& rhs)
 
 void Window::ShowIndicator( IndicatorVisibleMode visibleMode )
 {
+  DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: ShowIndicator is deprecated and will be removed from next release.\n" );
+
   GetImplementation(*this).ShowIndicator( visibleMode );
 }
 
 Window::IndicatorSignalType& Window::IndicatorVisibilityChangedSignal()
 {
+  DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: IndicatorVisibilityChangedSignal is deprecated and will be removed from next release.\n" );
+
   return GetImplementation(*this).IndicatorVisibilityChangedSignal();
 }
 
 void Window::SetIndicatorBgOpacity( IndicatorBgOpacity opacity )
 {
+  DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: SetIndicatorBgOpacity is deprecated and will be removed from next release.\n" );
+
   GetImplementation(*this).SetIndicatorBgOpacity( opacity );
 }
 
 void Window::RotateIndicator( WindowOrientation orientation )
 {
+  DALI_LOG_WARNING_NOFN("DEPRECATION WARNING: RotateIndicator is deprecated and will be removed from next release.\n" );
+
   GetImplementation(*this).RotateIndicator( orientation );
 }