Bidirectional Implementation for one line of text.
[platform/core/uifw/dali-toolkit.git] / dali-toolkit / internal / text / layouts / layout-engine.h
index d3ae55a..cdcd156 100644 (file)
  *
  */
 
-// INTERNAL INCLUDE
-#include <dali-toolkit/internal/text/text-definitions.h>
-
 // EXTERNAL INCLUDE
 #include <dali/public-api/common/dali-vector.h>
+#include <dali/public-api/math/vector2.h>
+
+// INTERNAL INCLUDE
+#include <dali-toolkit/internal/text/line-run.h>
 
 namespace Dali
 {
@@ -35,7 +36,7 @@ namespace Toolkit
 namespace Text
 {
 
-class VisualModel;
+struct LayoutParameters;
 
 /**
  * @brief LayoutEngine is responsible for calculating the visual position of glyphs in layout.
@@ -77,17 +78,28 @@ public:
   /**
    * @brief Store the visual position of glyphs in the VisualModel.
    *
-   * @param[in] boundingBox The size of the box containing the text.
-   * @param[in] glyphs A vector with glyphs.
-   * @param[in] characterIndices Vector with indices pointing the first character of each glyph.
-   * @param[in] charactersPerGlyph Vector with the number of characters that forms each glyph.
-   * @param[in] visualModel The visual model to update.
+   * @param[in] layoutParameters The parameters needed to layout the text.
+   * @param[out] glyphPositions The positions of all the glyphs.
+   * @param[out] lines The laid-out lines.
+   * @param[out] actualSize The size of the text after it has been laid-out.
+   *
+   * @return \e true if the text has been re-laid-out. \e false means the given width is too small to layout even a single character.
+   */
+  bool LayoutText( const LayoutParameters& layoutParameters,
+                   Vector<Vector2>& glyphPositions,
+                   Vector<LineRun>& lines,
+                   Size& actualSize );
+
+  /**
+   * Re-lays out those lines with right to left characters.
+   *
+   * It doesn't change the phisical position of the glyphs in the model but sets their new position.
+   *
+   * @param[in] layoutParameters The parameters needed to layout the text.
+   * @param[in,out] glyphPositions The positions of all the glyphs.
    */
-  void UpdateVisualModel( const Vector2& boundingBox,
-                          const Vector<GlyphInfo>& glyphs,
-                          const Vector<CharacterIndex>& characterIndices,
-                          const Vector<Length>& charactersPerGlyph,
-                          VisualModel& visualModel );
+  void ReLayoutRightToLeftLines( const LayoutParameters& layoutParameters,
+                                 Vector<Vector2>& glyphPositions );
 
 private: