Merge "DALi Version 1.2.50" into devel/master
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / rendering / text-renderer.h
index eea4efa..1d473c5 100644 (file)
@@ -23,9 +23,6 @@
 #include <dali/public-api/common/intrusive-ptr.h>
 #include <dali/public-api/object/ref-object.h>
 
-// INTERNAL INCLUDES
-#include <dali-toolkit/internal/text/text-view-interface.h>
-
 namespace Dali
 {
 
@@ -38,6 +35,8 @@ namespace Text
 class Renderer;
 typedef IntrusivePtr<Renderer> RendererPtr;
 
+class ViewInterface;
+
 /**
  * @brief Abstract base class for Text renderers.
  *
@@ -52,10 +51,17 @@ public:
    * @brief Render the glyphs from a ViewInterface.
    *
    * @param[in] view The interface to a view.
+   * @param[in] textControl handle to the text control
+   * @param[in] animatablePropertyIndex textControl specific animatable property
+   * @param[out] alignmentOffset Offset used to internally align the placement actor.
    * @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, int depth ) = 0;
+  virtual Actor Render( ViewInterface& view,
+                        Actor textContol,
+                        Property::Index animatablePropertyIndex,
+                        float& alignmentOffset,
+                        int depth ) = 0;
 
 protected: