X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fadaptor%2Fcommon%2Fadaptor.cpp;h=3915b685ae44a10db63cad80c81334793f8e7db2;hb=c12c1126016b3e49cf1237064f4b7ce5c302e0e4;hp=9b300bf57bc8a8e3c3246a621aa41351a165f68b;hpb=07701911d30f25234a474c97ab263ec994f8a5c0;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/internal/adaptor/common/adaptor.cpp b/dali/internal/adaptor/common/adaptor.cpp index 9b300bf..3915b68 100755 --- a/dali/internal/adaptor/common/adaptor.cpp +++ b/dali/internal/adaptor/common/adaptor.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. @@ -16,7 +16,7 @@ */ // CLASS HEADER -#include +#include // EXTERNAL INCLUDES #include @@ -24,16 +24,11 @@ // INTERNAL INCLUDES #include #include -#include +#include +#include #include #include -#ifdef DALI_ADAPTOR_COMPILATION -#include -#else -#include -#endif - namespace Dali { @@ -161,6 +156,11 @@ Any Adaptor::GetNativeWindowHandle() return mImpl->GetNativeWindowHandle(); } +Any Adaptor::GetNativeWindowHandle( Actor actor ) +{ + return mImpl->GetNativeWindowHandle( actor ); +} + Any Adaptor::GetGraphicsDisplay() { return mImpl->GetGraphicsDisplay(); @@ -256,6 +256,11 @@ Dali::WindowContainer Adaptor::GetWindows() const return mImpl->GetWindows(); } +SceneHolderList Adaptor::GetSceneHolders() const +{ + return mImpl->GetSceneHolders(); +} + void Adaptor::OnWindowShown() { mImpl->OnWindowShown();