X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Fwindow-devel.cpp;h=09f070c570a581798bb402d131584422cb817734;hb=62480e7eb3bb946a5e41d118aaf58e4596bed5fc;hp=886d56bbd4696dbefd82495c4909f57b58eaa057;hpb=97d956df063bcac946699f8483efda6546c2f99a;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/devel-api/adaptor-framework/window-devel.cpp b/dali/devel-api/adaptor-framework/window-devel.cpp index 886d56b..09f070c 100644 --- a/dali/devel-api/adaptor-framework/window-devel.cpp +++ b/dali/devel-api/adaptor-framework/window-devel.cpp @@ -106,6 +106,11 @@ void SetParent(Window window, Window parent) GetImplementation(window).SetParent(parent); } +void SetParent(Window window, Window parent, bool belowParent) +{ + GetImplementation(window).SetParent(parent, belowParent); +} + void Unparent(Window window) { GetImplementation(window).Unparent(); @@ -171,6 +176,26 @@ void EnableFloatingMode(Window window, bool enable) GetImplementation(window).EnableFloatingMode(enable); } +void IncludeInputRegion(Window window, const Rect& inputRegion) +{ + GetImplementation(window).IncludeInputRegion(inputRegion); +} + +void ExcludeInputRegion(Window window, const Rect& inputRegion) +{ + GetImplementation(window).ExcludeInputRegion(inputRegion); +} + +void SetNeedsRotationCompletedAcknowledgement(Window window, bool needAcknowledgement) +{ + GetImplementation(window).SetNeedsRotationCompletedAcknowledgement(needAcknowledgement); +} + +void SendRotationCompletedAcknowledgement(Window window) +{ + GetImplementation(window).SendRotationCompletedAcknowledgement(); +} + } // namespace DevelWindow } // namespace Dali