X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;ds=sidebyside;f=dali%2Fdevel-api%2Fadaptor-framework%2Fwindow-devel.cpp;h=f883ae8bde8784d39cb4ab13f5d773c41d50d06b;hb=66ebc91833b3a2da6ca84c24c08f078de2d893be;hp=cd0819f8acf27e5819b3b4d3593dcf8e1df7e13c;hpb=3c39cd383a91b443f0aa8ecb0a3b976585cf2139;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 cd0819f..f883ae8 100644 --- a/dali/devel-api/adaptor-framework/window-devel.cpp +++ b/dali/devel-api/adaptor-framework/window-devel.cpp @@ -17,7 +17,6 @@ // EXTERNAL INCLUDES #include -#include #include // INTERNAL INCLUDES @@ -56,7 +55,7 @@ Window New(Any surface, PositionSize windowPosition, const std::string& name, co if (isAdaptorAvailable) { Dali::Adaptor& adaptor = Internal::Adaptor::Adaptor::Get(); - Internal::Adaptor::Adaptor::GetImplementation(adaptor).AddWindow(sceneHolder, name, className, isTransparent); + Internal::Adaptor::Adaptor::GetImplementation(adaptor).AddWindow(sceneHolder); } newWindow = Window(window); } @@ -73,11 +72,6 @@ void SetPositionSize( Window window, PositionSize positionSize ) GetImplementation( window ).SetPositionSize( positionSize ); } -Dali::RenderTaskList GetRenderTaskList( Window window ) -{ - return GetImplementation( window ).GetRenderTaskList(); -} - Window Get( Actor actor ) { return Internal::Adaptor::Window::Get( actor ); @@ -103,6 +97,11 @@ TransitionEffectEventSignalType& TransitionEffectEventSignal( Window window ) return GetImplementation( window ).TransitionEffectEventSignal(); } +KeyboardRepeatSettingsChangedSignalType& KeyboardRepeatSettingsChangedSignal( Window window ) +{ + return GetImplementation( window ).KeyboardRepeatSettingsChangedSignal(); +} + void SetParent( Window window, Window parent ) { GetImplementation( window ).SetParent( parent ); @@ -138,11 +137,6 @@ int32_t GetNativeId( Window window ) return GetImplementation( window ).GetNativeId(); } -void SetDamagedAreas(Window window, std::vector>& areas) -{ - GetImplementation(window).SetDamagedAreas(areas); -} - void AddFrameRenderedCallback( Window window, std::unique_ptr< CallbackBase > callback, int32_t frameId ) { GetImplementation( window ).AddFrameRenderedCallback( std::move( callback ), frameId );