X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Fwindow-devel.cpp;h=9d93348203f048a04440198b071259a4649f0f2f;hb=69a5d36b6582848c57f59625ca61330e42521a75;hp=17a299368d7ec60b10044584dfe77b2a13442c34;hpb=4bfbbd6f98d3f0759d8533b9560e6bc11631cb32;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 17a2993..9d93348 100644 --- a/dali/devel-api/adaptor-framework/window-devel.cpp +++ b/dali/devel-api/adaptor-framework/window-devel.cpp @@ -65,6 +65,25 @@ WheelEventSignalType& WheelEventSignal( Window window ) return GetImplementation( window ).WheelEventSignal(); } +void SetParent( Window window, Window parent ) +{ + GetImplementation( window ).SetParent( parent ); +} + +void Unparent( Window window ) +{ + GetImplementation( window ).Unparent(); +} + +Window GetParent( Window window ) +{ + return GetImplementation( window ).GetParent(); +} + +Window DownCast( BaseHandle handle ) +{ + return Window( dynamic_cast( handle.GetObjectPtr()) ); +} } // namespace DevelWindow } // namespace Dali