Supports some tizen window features.
[platform/core/uifw/dali-adaptor.git] / dali / devel-api / adaptor-framework / window-devel.cpp
index 28dd6b5..886d56b 100644 (file)
@@ -156,6 +156,21 @@ void SetPositionSizeWithOrientation(Window window, PositionSize positionSize, Wi
   GetImplementation(window).SetPositionSizeWithOrientation(positionSize, orientation);
 }
 
+void RequestMoveToServer(Window window)
+{
+  GetImplementation(window).RequestMoveToServer();
+}
+
+void RequestResizeToServer(Window window, WindowResizeDirection direction)
+{
+  GetImplementation(window).RequestResizeToServer(direction);
+}
+
+void EnableFloatingMode(Window window, bool enable)
+{
+  GetImplementation(window).EnableFloatingMode(enable);
+}
+
 } // namespace DevelWindow
 
 } // namespace Dali