X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=dali%2Finternal%2Fadaptor%2Fcommon%2Fadaptor-impl.h;h=428680cb546fc9793bc343619a38c855dea863cb;hb=263ec21432f3d7c9f9be5b463748fdce8f6942e4;hp=af7eb877661bdd6614871ae1e7035c2ba1ff09a8;hpb=d091f8632e8e6ec8cf03282c6cb12e3fc2e0e698;p=platform%2Fcore%2Fuifw%2Fdali-adaptor.git diff --git a/dali/internal/adaptor/common/adaptor-impl.h b/dali/internal/adaptor/common/adaptor-impl.h index af7eb87..428680c 100755 --- a/dali/internal/adaptor/common/adaptor-impl.h +++ b/dali/internal/adaptor/common/adaptor-impl.h @@ -49,7 +49,7 @@ namespace Dali { -class RenderSurface; +class RenderSurfaceInterface; class Window; namespace Integration @@ -106,7 +106,7 @@ public: * @param[in] environmentOptions A pointer to the environment options. If NULL then one is created. */ static Dali::Adaptor* New( Any nativeWindow, - RenderSurface* surface, + Dali::RenderSurfaceInterface* surface, Dali::Configuration::ContextLoss configuration, EnvironmentOptions* environmentOptions ); @@ -132,7 +132,7 @@ public: */ static Dali::Adaptor* New( GraphicsFactory& graphicsFactory, Any nativeWindow, - RenderSurface* surface, + Dali::RenderSurfaceInterface* surface, Dali::Configuration::ContextLoss configuration, EnvironmentOptions* environmentOptions ); @@ -224,12 +224,12 @@ public: // AdaptorInternalServices implementation /** * @copydoc AdaptorInterface::ReplaceSurface() */ - virtual void ReplaceSurface( Any nativeWindow, RenderSurface& surface ); + virtual void ReplaceSurface( Any nativeWindow, Dali::RenderSurfaceInterface& surface ); /** * @copydoc Dali::Adaptor::GetSurface() */ - virtual RenderSurface& GetSurface() const; + virtual Dali::RenderSurfaceInterface& GetSurface() const; /** * @copydoc Dali::Adaptor::ReleaseSurfaceLock() @@ -283,6 +283,12 @@ public: // AdaptorInternalServices implementation */ void SetPreRenderCallback( CallbackBase* callback ); + /** + * Removes an existing Window instance from the Adaptor + * @param[in] childWindow The Window instance + */ + bool RemoveWindow( Dali::Internal::Adaptor::Window* childWindow ); + public: /** @@ -380,11 +386,6 @@ public: void RequestUpdateOnce(); /** - * Request adaptor to update indicator's height - */ - void IndicatorSizeChanged(int height); - - /** * @copydoc Dali::Adaptor::NotifySceneCreated() */ void NotifySceneCreated(); @@ -402,12 +403,12 @@ public: /** * Informs core the surface size has changed */ - void SurfaceResizePrepare( SurfaceSize surfaceSize ); + void SurfaceResizePrepare( Dali::RenderSurfaceInterface* surface, SurfaceSize surfaceSize ); /** * Informs ThreadController the surface size has changed */ - void SurfaceResizeComplete( SurfaceSize surfaceSize ); + void SurfaceResizeComplete( Dali::RenderSurfaceInterface* surface, SurfaceSize surfaceSize ); /** * Sets layout direction of root by system language @@ -470,7 +471,7 @@ public: //AdaptorInternalServices /** * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetRenderSurfaceInterface() */ - virtual RenderSurface* GetRenderSurfaceInterface(); + virtual Dali::RenderSurfaceInterface* GetRenderSurfaceInterface(); /** * @copydoc Dali::Internal::Adaptor::AdaptorInternalServices::GetVSyncMonitorInterface() @@ -565,7 +566,7 @@ private: * Assigns the render surface to the adaptor * */ - void SetSurface(RenderSurface *surface); + void SetSurface(Dali::RenderSurfaceInterface *surface); /** * called after surface is created @@ -615,7 +616,7 @@ private: * - Window, adaptor will use existing Window to draw on to * @param[in] environmentOptions A pointer to the environment options. If NULL then one is created. */ - Adaptor( Any nativeWindow, Dali::Adaptor& adaptor, RenderSurface* surface, EnvironmentOptions* environmentOptions ); + Adaptor( Any nativeWindow, Dali::Adaptor& adaptor, Dali::RenderSurfaceInterface* surface, EnvironmentOptions* environmentOptions ); private: // Types @@ -636,7 +637,8 @@ private: // Types std::string class_name; ///< Class name that the window belongs to bool window_mode; ///< Display mode of the window Any nativeWindow; ///< window identifier - RenderSurface* surface; ///< The surface the Window is bound to + uint32_t id; ///< unique Window ID + Dali::RenderSurfaceInterface* surface; ///< The surface the Window is bound to } WindowPane; typedef std::vector WindowFrames;