X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Fdevel-api%2Fadaptor-framework%2Fwindow-devel.cpp;h=f883ae8bde8784d39cb4ab13f5d773c41d50d06b;hb=66ebc91833b3a2da6ca84c24c08f078de2d893be;hp=7d046ec44d78b206222162d7d95da5d3b6143742;hpb=a67bddb9946a20e3eed7d71ade2ed8b20eccdf38;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 old mode 100755 new mode 100644 index 7d046ec..f883ae8 --- a/dali/devel-api/adaptor-framework/window-devel.cpp +++ b/dali/devel-api/adaptor-framework/window-devel.cpp @@ -1,5 +1,5 @@ /* - * Copyright (c) 2019 Samsung Electronics Co., Ltd. + * Copyright (c) 2020 Samsung Electronics Co., Ltd. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. @@ -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 ); @@ -88,16 +82,6 @@ EventProcessingFinishedSignalType& EventProcessingFinishedSignal( Window window return GetImplementation( window ).EventProcessingFinishedSignal(); } -KeyEventSignalType& KeyEventSignal( Window window ) -{ - return GetImplementation( window ).KeyEventSignal(); -} - -TouchSignalType& TouchSignal( Window window ) -{ - return GetImplementation( window ).TouchSignal(); -} - WheelEventSignalType& WheelEventSignal( Window window ) { return GetImplementation( window ).WheelEventSignal(); @@ -113,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 ); @@ -148,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 );