X-Git-Url: http://review.tizen.org/git/?p=platform%2Fcore%2Fuifw%2Fdali-toolkit.git;a=blobdiff_plain;f=dali-toolkit%2Finternal%2Ftext%2Frendering%2Ftext-renderer.h;h=cc7c8f4ee02e7fe580d8422698cdb30cfa9c14ba;hp=1262c907d3f44e1035368b05cf74ba9fba9ac00a;hb=5b3cf0e6742934674bdf62bbe15af00e39eae566;hpb=5f6befa398f1c68fcc8edff409a086f54af4d5f9 diff --git a/dali-toolkit/internal/text/rendering/text-renderer.h b/dali-toolkit/internal/text/rendering/text-renderer.h index 1262c90..cc7c8f4 100644 --- a/dali-toolkit/internal/text/rendering/text-renderer.h +++ b/dali-toolkit/internal/text/rendering/text-renderer.h @@ -23,9 +23,6 @@ #include #include -// INTERNAL INCLUDES -#include - namespace Dali { @@ -38,11 +35,13 @@ namespace Text class Renderer; typedef IntrusivePtr RendererPtr; +class ViewInterface; + /** * @brief Abstract base class for Text renderers. * * This is reponsible for rendering the glyphs from a ViewInterface in the specified positions. - * It is implemented by returning a RenderableActor intended as the child of a UI control. + * It is implemented by returning an Actor intended as the child of a UI control. */ class Renderer : public RefObject { @@ -52,9 +51,10 @@ public: * @brief Render the glyphs from a ViewInterface. * * @param[in] view The interface to a view. + * @param[in] depth The depth in the tree of the parent. * @return The Renderable actor used to position the text. */ - virtual Actor Render( ViewInterface& view ) = 0; + virtual Actor Render( ViewInterface& view, int depth ) = 0; protected: