Merge branch 'tizen' into new_text
[platform/core/uifw/dali-core.git] / dali / internal / event / text / text-format.h
index fe16ca8..13323bc 100644 (file)
@@ -47,13 +47,11 @@ struct TextFormat
   /**
    * Constructor
    * @param[in] underline whether to underline the text
-   * @param[in] leftToRight whether text is rendered left to right
    * @param[in] italics whether italics is enabled
    * @param[in] italicsAngle italics angle
    * @param[in] pointSize the point size
    */
   TextFormat( bool underline,
-              bool leftToRight,
               bool italics,
               Dali::Radian italicsAngle,
               float pointSize,
@@ -86,12 +84,6 @@ struct TextFormat
   bool IsUnderLined() const;
 
   /**
-   * Whether left to right character layout is enabled
-   * @return true if left to right is true
-   */
-  bool IsLeftToRight() const;
-
-  /**
    * whether italics are enabled
    * @return true if italics enabled
    */
@@ -128,7 +120,6 @@ struct TextFormat
 private:
 
   bool mUnderline:1;              ///< whether to underline the text
-  bool mLeftToRight:1;            ///< Whether text is displayed left to right
   bool mItalics:1;                ///< whether to apply italics
   Dali::Radian mItalicsAngle;     ///< italics angle if applied
   float mPointSize;               ///< Point size. Used to scale the vertices by this amount.