X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=automated-tests%2Fsrc%2Fdali-toolkit%2Fdali-toolkit-test-utils%2Ftoolkit-adaptor-impl.h;h=ee60af1b97cd2317c75561af9729a73bc2569dbb;hp=902167c0a72dd7b245e6b92faa6ea7887c325c4c;hb=refs%2Fheads%2Faccepted%2Ftizen_unified;hpb=b016ed94d799d4c3840177157f0d4241d4448d14 diff --git a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor-impl.h b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor-impl.h index 902167c..49c344a 100644 --- a/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor-impl.h +++ b/automated-tests/src/dali-toolkit/dali-toolkit-test-utils/toolkit-adaptor-impl.h @@ -1,8 +1,8 @@ -#ifndef __DALI_TOOLKIT_ADAPTOR_IMPL_H__ -#define __DALI_TOOLKIT_ADAPTOR_IMPL_H__ +#ifndef DALI_TOOLKIT_ADAPTOR_IMPL_H +#define DALI_TOOLKIT_ADAPTOR_IMPL_H /* - * Copyright (c) 2016 Samsung Electronics Co., Ltd. + * Copyright (c) 2024 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. @@ -18,21 +18,29 @@ * */ -#include +#include namespace Dali { class EglInterface; class DisplayConnection; class ThreadSynchronizationInterface; +class Window; +class TestApplication; -namespace Internal +namespace Integration { +class Scene; +} + +using WindowContainer = std::vector; +namespace Internal +{ namespace Adaptor { - class GraphicsInterface; +class SceneHolder; } // namespace Adaptor @@ -40,7 +48,6 @@ class GraphicsInterface; namespace Integration { - class GlAbstraction; } // namespace Integration @@ -49,23 +56,69 @@ namespace Internal { namespace Adaptor { - -class Adaptor: public BaseObject +class Adaptor { public: + static Dali::Adaptor& New(); static Dali::Adaptor& Get(); Adaptor(); ~Adaptor(); -public: - static Dali::RenderSurfaceInterface& GetSurface(); - static Dali::Adaptor::AdaptorSignalType& AdaptorSignal(); - static bool mAvailable; - static Vector mCallbacks; + void Start(Dali::Window window); + void Stop(); + + bool AddIdle(CallbackBase* callback, bool hasReturnValue); + void RemoveIdle(CallbackBase* callback); + void RunIdles(); + + static Integration::Scene GetScene(Dali::Window window); + + Dali::RenderSurfaceInterface& GetSurface(); + Dali::WindowContainer GetWindows(); + Dali::SceneHolderList GetSceneHolders(); + + Dali::Internal::Adaptor::SceneHolder* GetWindow(Dali::Actor& actor); + void AddWindow(Internal::Adaptor::SceneHolder* window); + void RemoveWindow(Internal::Adaptor::SceneHolder* window); + + void RegisterProcessor(Integration::Processor& processor, bool postProcessor = false); + void UnregisterProcessor(Integration::Processor& processor, bool postProcessor = false); + + void SetApplication(Dali::TestApplication& testApplication); + + bool IsStopped() const + { + return mStopped; + } + + Dali::Adaptor::AdaptorSignalType& ResizedSignal(); + Dali::Adaptor::AdaptorSignalType& LanguageChangedSignal(); + Dali::Adaptor::WindowCreatedSignalType& WindowCreatedSignal(); + Dali::Adaptor::LocaleChangedSignalType& LocaleChangedSignal(); + + static Adaptor& GetImpl(Dali::Adaptor& adaptor) + { + return *adaptor.mImpl; + } + static const Adaptor& GetImpl(const Dali::Adaptor& adaptor) + { + return *adaptor.mImpl; + } + +private: + Vector mCallbacks; + Vector mReturnCallbacks; + std::vector mWindows; + Dali::Adaptor::AdaptorSignalType mResizedSignal; + Dali::Adaptor::AdaptorSignalType mLanguageChangedSignal; + Dali::Adaptor::WindowCreatedSignalType mWindowCreatedSignal; + Dali::Adaptor::LocaleChangedSignalType mLocaleChangedSignal; + TestApplication* mTestApplication; + bool mStopped{false}; }; } // namespace Adaptor } // namespace Internal } // namespace Dali -#endif // __DALI_TOOLKIT_ADAPTOR_IMPL_H__ +#endif // DALI_TOOLKIT_ADAPTOR_IMPL_H